ConstraintB.php 268 B

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