ConstraintA.php 270 B

12345678910111213141516
  1. <?php
  2. namespace Symfony\Tests\Component\Validator\Fixtures;
  3. use Symfony\Component\Validator\Constraint;
  4. class ConstraintA extends Constraint
  5. {
  6. public $property1;
  7. public $property2;
  8. public function defaultOption()
  9. {
  10. return 'property2';
  11. }
  12. }