[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 * Constraint for the Unique Entity validator
* *
* @Annotation * @Annotation
* @Target("CLASS") * @Target({"CLASS", "ANNOTATION"})
* *
* @author Benjamin Eberlei <kontakt@beberlei.de> * @author Benjamin Eberlei <kontakt@beberlei.de>
*/ */

View File

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

View File

@ -15,7 +15,7 @@ namespace Symfony\Component\Validator\Constraints;
* Annotation for group sequences * Annotation for group sequences
* *
* @Annotation * @Annotation
* @Target("CLASS") * @Target({"CLASS", "ANNOTATION"})
* *
* @author Bernhard Schussek <bschussek@gmail.com> * @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 to define a group sequence provider
* *
* @Annotation * @Annotation
* @Target("CLASS") * @Target({"CLASS", "ANNOTATION"})
*/ */
class GroupSequenceProvider class GroupSequenceProvider
{ {