Skip to content

Commit 95f1d66

Browse files
Merge branch '2.7' into 2.8
* 2.7: [Intl] Make intl-data tests pass and save language aliases again Remove useless docblocks
2 parents d43617f + fb9e449 commit 95f1d66

File tree

6 files changed

+3
-15
lines changed

6 files changed

+3
-15
lines changed

AuthenticationEvents.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ final class AuthenticationEvents
2121
* Symfony\Component\Security\Core\Event\AuthenticationEvent instance.
2222
*
2323
* @Event
24-
*
25-
* @var string
2624
*/
2725
const AUTHENTICATION_SUCCESS = 'security.authentication.success';
2826

@@ -35,8 +33,6 @@ final class AuthenticationEvents
3533
* instance.
3634
*
3735
* @Event
38-
*
39-
* @var string
4036
*/
4137
const AUTHENTICATION_FAILURE = 'security.authentication.failure';
4238
}

Encoder/BCryptPasswordEncoder.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ class BCryptPasswordEncoder extends BasePasswordEncoder
2121
{
2222
const MAX_PASSWORD_LENGTH = 72;
2323

24-
/**
25-
* @var string
26-
*/
2724
private $cost;
2825

2926
/**

Encoder/BasePasswordEncoder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ protected function demergePasswordAndSalt($mergedPasswordSalt)
4848
/**
4949
* Merges a password and a salt.
5050
*
51-
* @param string $password the password to be used
52-
* @param string $salt the salt to be used
51+
* @param string $password The password to be used
52+
* @param string $salt The salt to be used
5353
*
5454
* @return string a merged password and salt
5555
*

SecurityContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class SecurityContext implements SecurityContextInterface
4848
*
4949
* @param TokenStorageInterface|AuthenticationManagerInterface $tokenStorage
5050
* @param AuthorizationCheckerInterface|AccessDecisionManagerInterface $authorizationChecker
51-
* @param bool $alwaysAuthenticate only applicable with old signature
51+
* @param bool $alwaysAuthenticate Only applicable with old signature
5252
*/
5353
public function __construct($tokenStorage, $authorizationChecker, $alwaysAuthenticate = false)
5454
{

Tests/Validator/Constraints/UserPasswordValidatorTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
abstract class UserPasswordValidatorTest extends AbstractConstraintValidatorTest
2525
{
2626
const PASSWORD = 's3Cr3t';
27-
2827
const SALT = '^S4lt$';
2928

3029
/**

Util/ClassUtils.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,11 @@ class ClassUtils
2828
{
2929
/**
3030
* Marker for Proxy class names.
31-
*
32-
* @var string
3331
*/
3432
const MARKER = '__CG__';
3533

3634
/**
3735
* Length of the proxy marker.
38-
*
39-
* @var int
4036
*/
4137
const MARKER_LENGTH = 6;
4238

0 commit comments

Comments
 (0)