ConstraintC.php 625 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator\Tests\Fixtures;
  11. use Symfony\Component\Validator\Constraint;
  12. /** @Annotation */
  13. class ConstraintC extends Constraint
  14. {
  15. public $option1;
  16. public function getRequiredOptions()
  17. {
  18. return array('option1');
  19. }
  20. public function getTargets()
  21. {
  22. return array(self::PROPERTY_CONSTRAINT, self::CLASS_CONSTRAINT);
  23. }
  24. }