8000 minor #48235 [Security] Fix typo in doc blocks (shokhaa) · symfony/symfony@e08063a · GitHub
[go: up one dir, main page]

Skip to content

Commit e08063a

Browse files
committed
minor #48235 [Security] Fix typo in doc blocks (shokhaa)
This PR was merged into the 6.2 branch. Discussion ---------- [Security] Fix typo in doc blocks syntax error replace : to :: | Q | A | ------------- | --- | Branch? | 6.2 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A Commits ------- b287651 Update Security.php
2 parents ac88f9a + b287651 commit e08063a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Security/Core/Security.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ class Security implements AuthorizationCheckerInterface
2727
/**
2828
* @deprecated since Symfony 6.2, use \Symfony\Bundle\SecurityBundle\Security::ACCESS_DENIED_ERROR instead
2929
*
30-
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes:ACCESS_DENIED_ERROR.
30+
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes::ACCESS_DENIED_ERROR.
3131
*/
3232
public const ACCESS_DENIED_ERROR = '_security.403_error';
3333

3434
/**
3535
* @deprecated since Symfony 6.2, use \Symfony\Bundle\SecurityBundle\Security::AUTHENTICATION_ERROR instead
3636
*
37-
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes:AUTHENTICATION_ERROR.
37+
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes::AUTHENTICATION_ERROR.
3838
*/
3939
public const AUTHENTICATION_ERROR = '_security.last_error';
4040

4141
/**
4242
* @deprecated since Symfony 6.2, use \Symfony\Bundle\SecurityBundle\Security::LAST_USERNAME instead
4343
*
44-
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes:LAST_USERNAME.
44+
* In 7.0, move this constant to the NewSecurityHelper class and make it reference SecurityRequestAttributes::LAST_USERNAME.
4545
*/
4646
public const LAST_USERNAME = '_security.last_username';
4747

0 commit comments

Comments
 (0)
0