mirror of
https://github.com/danog/file.git
synced 2024-12-02 17:28:24 +01:00
Style fix
This commit is contained in:
parent
22d64fb6dd
commit
d5f6c81e51
@ -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)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user