Skip to content

Commit b033c6b

Browse files
Merge branch '3.3' into 3.4
* 3.3: [Serializer] Fix extra attributes when no group specified [Intl] Make intl-data tests pass and save language aliases again [Console] Fix CommandTester::setInputs() docblock [Serializer] readd default argument value [VarDumper] fix trailling comma when dumping an exception Remove useless docblocks [FrameworkBundle] Fix docblocks [PropertyInfo] Remove useless docblocks
2 parents c6e30c2 + bbfdaf2 commit b033c6b

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

AuthenticationEvents.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ final class AuthenticationEvents
1818
* by one provider.
1919
*
2020
* @Event("Symfony\Component\Security\Core\Event\AuthenticationEvent")
21-
*
22-
* @var string
2321
*/
2422
const AUTHENTICATION_SUCCESS = 'security.authentication.success';
2523

@@ -28,8 +26,6 @@ final class AuthenticationEvents
2826
* authenticated by any of the providers.
2927
*
3028
* @Event("Symfony\Component\Security\Core\Event\AuthenticationFailureEvent")
31-
*
32-
* @var string
3329
*/
3430
const AUTHENTICATION_FAILURE = 'security.authentication.failure';
3531
}

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 implements SelfSaltingEn
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
*

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 ConstraintValidatorTestCase
2525
{
2626
const PASSWORD = 's3Cr3t';
27-
2827
const SALT = '^S4lt$';
2928

3029
/**

0 commit comments

Comments
 (0)