diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-08 23:22:31 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-09 14:24:19 +0100 |
commit | 4fc80782bbb79b7379e833616321e585dd727e92 (patch) | |
tree | 35d0f089c2e92a37bb4331ea0986b70dac26f7e7 | |
parent | 3e3d154b833bea4eeb8e3f56e2b4f3a602f43ea8 (diff) | |
download | symfony-security-4fc80782bbb79b7379e833616321e585dd727e92.zip symfony-security-4fc80782bbb79b7379e833616321e585dd727e92.tar.gz symfony-security-4fc80782bbb79b7379e833616321e585dd727e92.tar.bz2 |
removed the Validator BC layer for PHP < 5.3.9
-rw-r--r-- | Core/Tests/Validator/Constraints/LegacyUserPasswordValidator2Dot4ApiTest.php | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Core/Tests/Validator/Constraints/LegacyUserPasswordValidator2Dot4ApiTest.php b/Core/Tests/Validator/Constraints/LegacyUserPasswordValidator2Dot4ApiTest.php deleted file mode 100644 index 4cba363..0000000 --- a/Core/Tests/Validator/Constraints/LegacyUserPasswordValidator2Dot4ApiTest.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php - -/* - * This file is part of the Symfony package. - * - * (c) Fabien Potencier <fabien@symfony.com> - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Security\Core\Tests\Validator\Constraints; - -use Symfony\Component\Validator\Validation; - -/** - * @since 2.5.4 - * @author Bernhard Schussek <bschussek@gmail.com> - */ -class LegacyUserPasswordValidator2Dot4ApiTest extends UserPasswordValidatorTest -{ - protected function getApiVersion() - { - return Validation::API_VERSION_2_4; - } -} |