Skip to content

Commit 70ad7a2

Browse files
committed
Using 'self' instead of 'static'
1 parent 5a236c5 commit 70ad7a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Strategy/CommonClassesStrategy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ final class CommonClassesStrategy implements DiscoveryStrategy
6767
*/
6868
public static function getCandidates($type)
6969
{
70-
if (isset(static::$classes[$type])) {
71-
return static::$classes[$type];
70+
if (isset(self::$classes[$type])) {
71+
return self::$classes[$type];
7272
}
7373

7474
return [];

0 commit comments

Comments
 (0)