Drupal investigation

GreaterThanOrEqual.php 781B

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\Constraints;
  11. /**
  12. * @Annotation
  13. * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
  14. *
  15. * @author Daniel Holmes <daniel@danielholmes.org>
  16. * @author Bernhard Schussek <bschussek@gmail.com>
  17. */
  18. class GreaterThanOrEqual extends AbstractComparison
  19. {
  20. const TOO_LOW_ERROR = 'ea4e51d1-3342-48bd-87f1-9e672cd90cad';
  21. protected static $errorNames = array(
  22. self::TOO_LOW_ERROR => 'TOO_LOW_ERROR',
  23. );
  24. public $message = 'This value should be greater than or equal to {{ compared_value }}.';
  25. }