Skip to content

Commit 2ad20f3

Browse files
ausinicolas-grekas
authored andcommitted
Fix legacy class palceholder definitions for static analysis
1 parent ae014d6 commit 2ad20f3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Loader/AnnotationClassLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class_exists(AttributeClassLoader::class);
1919
/**
2020
* @deprecated since Symfony 6.4, to be removed in 7.0, use {@link AttributeClassLoader} instead
2121
*/
22-
class AnnotationClassLoader
22+
abstract class AnnotationClassLoader extends AttributeClassLoader
2323
{
2424
}
2525
}

Loader/AnnotationDirectoryLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class_exists(AttributeDirectoryLoader::class);
1919
/**
2020
* @deprecated since Symfony 6.4, to be removed in 7.0, use {@link AttributeDirectoryLoader} instead
2121
*/
22-
class AnnotationDirectoryLoader
22+
class AnnotationDirectoryLoader extends AttributeDirectoryLoader
2323
{
2424
}
2525
}

Loader/AnnotationFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class_exists(AttributeFileLoader::class);
1919
/**
2020
* @deprecated since Symfony 6.4, to be removed in 7.0, use {@link AttributeFileLoader} instead
2121
*/
22-
class AnnotationFileLoader
22+
class AnnotationFileLoader extends AttributeFileLoader
2323
{
2424
}
2525
}

0 commit comments

Comments
 (0)