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/Fixtures
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
..
ConstraintA.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
ConstraintAValidator.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
ConstraintB.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
ConstraintC.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Entity.php [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
EntityInterface.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
EntityParent.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
FilesLoader.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
InvalidConstraint.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
InvalidConstraintValidator.php renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00