Skip to content

Commit

Permalink
BranchStorageFile: Number format
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek authored Mar 2, 2021
1 parent 85dde91 commit 6fe4459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BranchStorage/BranchStorageFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ public function find(int $id): ?array

public function isStorageValid(): bool
{
return $this->branchList !== null && \time() - filemtime($this->filePath) < 7200;
return $this->branchList !== null && \time() - filemtime($this->filePath) < 7_200;
}
}

0 comments on commit 6fe4459

Please sign in to comment.