All.php 558 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Symfony\Component\Validator\Constraints;
  3. /*
  4. * This file is part of the Symfony framework.
  5. *
  6. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. class All extends \Symfony\Component\Validator\Constraint
  12. {
  13. public $constraints = array();
  14. public function defaultOption()
  15. {
  16. return 'constraints';
  17. }
  18. public function requiredOptions()
  19. {
  20. return array('constraints');
  21. }
  22. }