Skip to content

Commit b48e3e0

Browse files
Merge branch '3.4'
* 3.4: [HttpFoundation] refactoring: calculate when need [Serializer] Fix extra attributes when no group specified [Intl] Make intl-data tests pass and save language aliases again [FrameworkBundle][Config] fix: do not add resource checkers for debug=false [DI] Fix "almost-circular" dependencies handling [Console] Fix CommandTester::setInputs() docblock Only enabling validation if it is present Fix displaying errors for bootstrap 4 [Serializer] readd default argument value Fix reference dump for deprecated nodes [PhpUnitBridge] Fixed fatal error in CoverageListener when something goes wrong in Test::setUpBeforeClass [HttpKernel] Let the storage manage the session starts [VarDumper] fix trailling comma when dumping an exception [Validator] Fix TraceableValidator is reset on data collector instantiation Remove useless docblocks [FrameworkBundle] Fix docblocks [PropertyInfo] Remove useless docblocks
2 parents 77b5ae5 + b033c6b commit b48e3e0

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)