Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Mar 12, 2024
1 parent 22d64fb commit d5f6c81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/FileMutex.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function acquire(): Lock

return $lock;
} catch (FilesystemException) {
delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/KeyedFileMutex.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function acquire(string $key): Lock

return $lock;
} catch (FilesystemException) {
delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
}
}
}
Expand Down

0 comments on commit d5f6c81

Please sign in to comment.