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
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
..
BrowserKit renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Console [Console] Added some tests for command shortcuts 2010-09-14 09:18:50 +02:00
CssSelector renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
DependencyInjection [DependencyInjection] added a way to ignore errors when importing a non-existent file (useful when you want to include an optional service file) 2010-08-24 16:37:41 +02:00
DomCrawler [DomCrawler] Added tests to verify previous fix 2010-09-03 09:13:04 +02:00
EventDispatcher renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Finder [Finder] Fixed randomly failing tests due to the order files are read from the filesystem 2010-09-03 09:29:11 +02:00
Form [Form] Removed invalid unit test 2010-09-27 17:54:43 +02:00
HttpFoundation [HttpFoundation] moved File Component into the HttpFoundation one 2010-09-09 17:01:48 +02:00
HttpKernel removed Symfony\Framework 2010-09-17 12:58:24 +02:00
OutputEscaper renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Routing renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Templating renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00
Translation [Translation] renamed Range to Interval 2010-09-28 07:14:43 +02:00
Validator [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
Yaml renamed Symfony\Components to Symfony\Component 2010-08-20 23:09:55 +02:00