[Validator] added missing ANNOTATION config to @Target annotation

This commit is contained in:
Fabien Potencier 2014-04-24 07:32:02 +02:00
parent ed53afe0fe
commit 67be44737e
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ use Symfony\Component\Validator\Constraint;
* Constraint for the Unique Entity validator
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/

View File

@ -15,7 +15,7 @@ use Symfony\Component\Validator\Constraint;
/**
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Bernhard Schussek <bschussek@gmail.com>
*

View File

@ -15,7 +15,7 @@ namespace Symfony\Component\Validator\Constraints;
* Annotation for group sequences
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Bernhard Schussek <bschussek@gmail.com>
*

View File

@ -15,7 +15,7 @@ namespace Symfony\Component\Validator\Constraints;
* Annotation to define a group sequence provider
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*/
class GroupSequenceProvider
{