1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 17:28:24 +01:00

Style fix

This commit is contained in:
Aaron Piotrowski 2024-03-11 19:20:54 -05:00
parent 22d64fb6dd
commit d5f6c81e51
No known key found for this signature in database
GPG Key ID: 5B456E6AABA44A63
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ final class FileMutex implements Mutex
return $lock; return $lock;
} catch (FilesystemException) { } catch (FilesystemException) {
delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
} }
} }
} }

View File

@ -47,7 +47,7 @@ final class KeyedFileMutex implements KeyedMutex
return $lock; return $lock;
} catch (FilesystemException) { } catch (FilesystemException) {
delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt)));
} }
} }
} }