ConstraintB.php 287 B

123456789101112131415
  1. <?php
  2. namespace Symfony\Tests\Component\Validator\Fixtures;
  3. use Symfony\Component\Validator\Constraint;
  4. /** @Annotation */
  5. class ConstraintB extends Constraint {
  6. public function getTargets()
  7. {
  8. return array(self::PROPERTY_CONSTRAINT, self::CLASS_CONSTRAINT);
  9. }
  10. }