From d5f6c81e51336040af3dcb71ce519cd8788fcffc Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Mon, 11 Mar 2024 19:20:54 -0500 Subject: [PATCH] Style fix --- src/FileMutex.php | 2 +- src/KeyedFileMutex.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FileMutex.php b/src/FileMutex.php index 99c1873..5efd967 100644 --- a/src/FileMutex.php +++ b/src/FileMutex.php @@ -37,7 +37,7 @@ final class FileMutex implements Mutex return $lock; } catch (FilesystemException) { - delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); + delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); } } } diff --git a/src/KeyedFileMutex.php b/src/KeyedFileMutex.php index f25fbba..88fe5c8 100644 --- a/src/KeyedFileMutex.php +++ b/src/KeyedFileMutex.php @@ -47,7 +47,7 @@ final class KeyedFileMutex implements KeyedMutex return $lock; } catch (FilesystemException) { - delay(min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); + delay(\min(self::DELAY_LIMIT, self::LATENCY_TIMEOUT * (2 ** $attempt))); } } }