diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2014-10-26 08:31:56 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2014-10-26 08:31:56 +0100 |
commit | 33dbf427824a8f01fe7fbc1adae208a12c5b8a87 (patch) | |
tree | a49123d8fc0a52c5d030203bfdc40dd54571dcb7 /Tests/Core/Validator/Constraints | |
parent | 573f2ce8b9c550c2b8215fd590619d52dae7f9cc (diff) | |
parent | 2f5a2d1b21b05f07bb7dc301d504766edb7dcd9b (diff) | |
download | symfony-security-33dbf427824a8f01fe7fbc1adae208a12c5b8a87.zip symfony-security-33dbf427824a8f01fe7fbc1adae208a12c5b8a87.tar.gz symfony-security-33dbf427824a8f01fe7fbc1adae208a12c5b8a87.tar.bz2 |
minor #12293 Remove aligned '=>' and '=' (disquedur)
This PR was squashed before being merged into the 2.3 branch (closes #12293).
Discussion
----------
Remove aligned '=>' and '='
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | yes
| Fixed tickets | [https://github.com/symfony/symfony/issues/12284]
| License | MIT
Could you said to me if i should make an other PR for 2.5 branch.
Commits
-------
51312d3 Remove aligned '=>' and '='
Diffstat (limited to 'Tests/Core/Validator/Constraints')
-rw-r--r-- | Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php b/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php index c3a8370..600f518 100644 --- a/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php +++ b/Tests/Core/Validator/Constraints/UserPasswordValidatorTest.php @@ -16,7 +16,7 @@ use Symfony\Component\Security\Core\Validator\Constraints\UserPasswordValidator; class UserPasswordValidatorTest extends \PHPUnit_Framework_TestCase { - const PASSWORD_VALID = true; + const PASSWORD_VALID = true; const PASSWORD_INVALID = false; protected $context; |