We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf54c2e commit 4e83270Copy full SHA for 4e83270
tests/IntegrationTest.php
@@ -5,7 +5,7 @@
5
namespace Spiral\RoadRunner\Symfony\Lock\Tests;
6
7
use PHPUnit\Framework\TestCase;
8
-use RoadRunner\Lock\LockInterface as RrLock;
+use RoadRunner\Lock as RR;
9
use Spiral\RoadRunner\Symfony\Lock\RoadRunnerStore;
10
use Symfony\Component\Lock\LockFactory;
11
@@ -20,7 +20,7 @@ public function testLock(): void
20
'uuid2'
21
],
22
];
23
- $rrLock = $this->createMock(RrLock::class);
+ $rrLock = $this->createMock(RR\LockInterface::class);
24
$rrLock
25
->expects(self::exactly(3))
26
->method('lock')
0 commit comments