File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public static function add(CandidateEntity $candidate): void
32
32
*/
33
33
public static function allCandidates (): CandidatesCollection
34
34
{
35
- if (self ::$ extendedCandidates instanceof \ PsrDiscovery \ Collections \ CandidatesCollection) {
35
+ if (self ::$ extendedCandidates instanceof CandidatesCollection) {
36
36
return self ::$ extendedCandidates ;
37
37
}
38
38
@@ -149,7 +149,7 @@ public static function allCandidates(): CandidatesCollection
149
149
*/
150
150
public static function candidates (): CandidatesCollection
151
151
{
152
- if (self ::$ candidates instanceof \ PsrDiscovery \ Collections \ CandidatesCollection) {
152
+ if (self ::$ candidates instanceof CandidatesCollection) {
153
153
return self ::$ candidates ;
154
154
}
155
155
@@ -193,7 +193,7 @@ public static function candidates(): CandidatesCollection
193
193
*/
194
194
public static function discover (): ?CacheItemPoolInterface
195
195
{
196
- if (self ::$ using instanceof \ Psr \ Cache \ CacheItemPoolInterface) {
196
+ if (self ::$ using instanceof CacheItemPoolInterface) {
197
197
return self ::$ using ;
198
198
}
199
199
@@ -221,7 +221,7 @@ public static function set(CandidatesCollection $candidates): void
221
221
222
222
public static function singleton (): ?CacheItemPoolInterface
223
223
{
224
- if (self ::$ using instanceof \ Psr \ Cache \ CacheItemPoolInterface) {
224
+ if (self ::$ using instanceof CacheItemPoolInterface) {
225
225
return self ::$ using ;
226
226
}
227
227
You can’t perform that action at this time.
0 commit comments