Skip to content

Commit f16db20

Browse files
committed
chore: apply updated php-cs-fixer linter rules
1 parent 8478e50 commit f16db20

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Implementations/Psr6/Caches.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)