Skip to content

Commit 9e63427

Browse files
ausinicolas-grekas
authored andcommitted
Fix legacy class palceholder definitions for static analysis
1 parent 8231b72 commit 9e63427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Debug/FileLinkFormatter.php

Lines changed: 1 addition & 1 deletion
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
}

UriSigner.php

Lines changed: 1 addition & 1 deletion
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
}

0 commit comments

Comments
 (0)