This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/Symfony/Tests/Component/Validator
Fabien Potencier 0fc8906feb [Validator] forced all validation annotations to be in the validation namespace to avoid collisions, removed the need for the wrapping @Validation annotation
Before:

    /**
     * @Validation({@DateTime()})
     */

After:

    /**
     * @validation:DateTime()
     */

The @validation:Validation() construct is not needed anymore (it is still supported
as this is useful when you have several annotations with the same class).

So, the above is equivalent to:

    /**
     * @validation:Validation({@validation:DateTime()})
     */
2010-10-02 15:07:00 +02:00
..
Constraints [Validator] removed the convention that error parameters are delimited with %% 2010-09-29 07:59:45 +02:00
Extension renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Fixtures [Validator] forced all validation annotations to be in the validation namespace to avoid collisions, removed the need for the wrapping @Validation annotation 2010-10-02 15:07:00 +02:00
Mapping renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
ConstraintTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
DependencyInjectionValidatorFactoryTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
GraphWalkerTest.php removed the message interpolator system in the Validator component (i18n management should be done globally, not in a specific component) 2010-09-24 16:41:28 +02:00
ValidatorTest.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00