Skip to content

Commit 34827f2

Browse files
Merge branch '3.4' into 4.3
* 3.4: [Form] Fix inconsistencies Use Phpunit FQDN in tests comments
2 parents ddba12c + 968a536 commit 34827f2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Tests/Store/CombinedStoreTest.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
namespace Symfony\Component\Lock\Tests\Store;
1313

14+
use PHPUnit\Framework\MockObject\MockObject;
1415
use Symfony\Component\Lock\Exception\LockConflictedException;
1516
use Symfony\Component\Lock\Key;
1617
use Symfony\Component\Lock\Store\CombinedStore;
@@ -49,11 +50,11 @@ public function getStore()
4950
return new CombinedStore([new RedisStore($redis)], new UnanimousStrategy());
5051
}
5152

52-
/** @var \PHPUnit_Framework_MockObject_MockObject */
53+
/** @var MockObject */
5354
private $strategy;
54-
/** @var \PHPUnit_Framework_MockObject_MockObject */
55+
/** @var MockObject */
5556
private $store1;
56-
/** @var \PHPUnit_Framework_MockObject_MockObject */
57+
/** @var MockObject */
5758
private $store2;
5859
/** @var CombinedStore */
5960
private $store;

0 commit comments

Comments
 (0)