We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f0984 commit 6d71252Copy full SHA for 6d71252
tests/Mutex/DistributedMutexTest.php
@@ -93,7 +93,7 @@ public function testTooFewServerToAcquire(int $count, int $available): void
93
$mutex = $this->createDistributedMutexMock($count);
94
95
$i = 0;
96
- $mutex->expects(self::atMost((int) floor($count / 2) + $count - $available))
+ $mutex->expects(self::atMost((int) floor($count / 2) + $count - $available))
97
->method('acquireMutex')
98
->willReturnCallback(static function () use (&$i, $available) {
99
if ($i++ < $available) {
0 commit comments