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
3232 */
3333 public static function allCandidates (): CandidatesCollection
3434 {
35- if (self ::$ extendedCandidates instanceof \ PsrDiscovery \ Collections \ CandidatesCollection) {
35+ if (self ::$ extendedCandidates instanceof CandidatesCollection) {
3636 return self ::$ extendedCandidates ;
3737 }
3838
@@ -149,7 +149,7 @@ public static function allCandidates(): CandidatesCollection
149149 */
150150 public static function candidates (): CandidatesCollection
151151 {
152- if (self ::$ candidates instanceof \ PsrDiscovery \ Collections \ CandidatesCollection) {
152+ if (self ::$ candidates instanceof CandidatesCollection) {
153153 return self ::$ candidates ;
154154 }
155155
@@ -193,7 +193,7 @@ public static function candidates(): CandidatesCollection
193193 */
194194 public static function discover (): ?CacheItemPoolInterface
195195 {
196- if (self ::$ using instanceof \ Psr \ Cache \ CacheItemPoolInterface) {
196+ if (self ::$ using instanceof CacheItemPoolInterface) {
197197 return self ::$ using ;
198198 }
199199
@@ -221,7 +221,7 @@ public static function set(CandidatesCollection $candidates): void
221221
222222 public static function singleton (): ?CacheItemPoolInterface
223223 {
224- if (self ::$ using instanceof \ Psr \ Cache \ CacheItemPoolInterface) {
224+ if (self ::$ using instanceof CacheItemPoolInterface) {
225225 return self ::$ using ;
226226 }
227227
You can’t perform that action at this time.
0 commit comments