Drupal investigation

IsFalse.php 722B

1234567891011121314151617181920212223242526272829303132
  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\Constraints;
  11. use Symfony\Component\Validator\Constraint;
  12. /**
  13. * @Annotation
  14. * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  15. *
  16. * @author Bernhard Schussek <bschussek@gmail.com>
  17. */
  18. class IsFalse extends Constraint
  19. {
  20. const NOT_FALSE_ERROR = 'd53a91b0-def3-426a-83d7-269da7ab4200';
  21. protected static $errorNames = array(
  22. self::NOT_FALSE_ERROR => 'NOT_FALSE_ERROR',
  23. );
  24. public $message = 'This value should be false.';
  25. }