PropertyConstraint.php 241 B

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