Skip to content

Commit e36955f

Browse files
Merge branch '5.2' into 5.3
* 5.2: Fix usage of str_contains() fix intersection types in tests
2 parents 06ad50f + 9487816 commit e36955f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Store/CombinedStoreTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ public function getStore(): PersistingStoreInterface
5353
return new CombinedStore([new RedisStore($redis)], new UnanimousStrategy());
5454
}
5555

56-
/** @var MockObject */
56+
/** @var MockObject&StrategyInterface */
5757
private $strategy;
58-
/** @var MockObject */
58+
/** @var MockObject&BlockingStoreInterface */
5959
private $store1;
60-
/** @var MockObject */
60+
/** @var MockObject&BlockingStoreInterface */
6161
private $store2;
6262
/** @var CombinedStore */
6363
private $store;

0 commit comments

Comments
 (0)