Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Validator] added missing ANNOTATION config to @target annotation
  • Loading branch information
fabpot committed Apr 24, 2014
1 parent ed53afe commit 67be447
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -17,7 +17,7 @@
* Constraint for the Unique Entity validator
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Benjamin Eberlei <kontakt@beberlei.de>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Validator/Constraints/Callback.php
Expand Up @@ -15,7 +15,7 @@

/**
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* Annotation for group sequences
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*
* @author Bernhard Schussek <bschussek@gmail.com>
*
Expand Down
Expand Up @@ -15,7 +15,7 @@
* Annotation to define a group sequence provider
*
* @Annotation
* @Target("CLASS")
* @Target({"CLASS", "ANNOTATION"})
*/
class GroupSequenceProvider
{
Expand Down

0 comments on commit 67be447

Please sign in to comment.