10000 Fix legacy class palceholder definitions for static analysis · symfony/symfony@0f230fe · GitHub
[go: up one dir, main page]

Skip to content

Commit 0f230fe

Browse files
ausinicolas-grekas
authored andcommitted
Fix legacy class palceholder definitions for static analysis
1 parent 0e93fc7 commit 0f230fe

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/Symfony/Bundle/FrameworkBundle/Routing/AnnotatedRouteControllerLoader.php

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

src/Symfony/Component/HttpKernel/Debug/FileLinkFormatter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class_alias(ErrorHandlerFileLinkFormatter::class, FileLinkFormatter::class);
2525
/**
2626
* @deprecated since Symfony 6.4, use FileLinkFormatter from the ErrorHandler component instead
2727
*/
28-
class FileLinkFormatter
28+
class FileLinkFormatter extends ErrorHandlerFileLinkFormatter
2929
{
3030
}
3131
}

src/Symfony/Component/HttpKernel/UriSigner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class_exists(HttpFoundationUriSigner::class);
2121
/**
2222
* @deprecated since Symfony 6.4, to be removed in 7.0, use {@link HttpFoundationUriSigner} instead
2323
*/
24-
class UriSigner
24+
class UriSigner extends HttpFoundationUriSigner
2525
{
2626
}
2727
}

src/Symfony/Component/Routing/Loader/AnnotationClassLoader.php

+1-1
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
}

src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php

+1-1
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
}

src/Symfony/Component/Routing/Loader/AnnotationFileLoader.php

+1-1
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
}

src/Symfony/Component/Serializer/Mapping/Loader/AnnotationLoader.php

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

0 commit comments

Comments
 (0)
0