Skip to content

Commit 7f64225

Browse files
committed
minor #18152 [Security] fix missing 'private' declaration (tacman)
This PR was submitted for the 6.3 branch but it was merged into the 6.2 branch instead. Discussion ---------- [Security] fix missing 'private' declaration <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> Commits ------- 83d751e fix missing 'private' declaration
2 parents f30cbe0 + 83d751e commit 7f64225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/access_denied_handler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unauthenticated user tries to access a protected resource::
3434
class AuthenticationEntryPoint implements AuthenticationEntryPointInterface
3535
{
3636
public function __construct(
37-
UrlGeneratorInterface $urlGenerator,
37+
private UrlGeneratorInterface $urlGenerator,
3838
) {
3939
}
4040

0 commit comments

Comments
 (0)