NotIdenticalTo.php 810 B

123456789101112131415161718192021222324252627282930
  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 NotIdenticalTo extends AbstractComparison
  19. {
  20. const IS_IDENTICAL_ERROR = '4aaac518-0dda-4129-a6d9-e216b9b454a0';
  21. protected static $errorNames = array(
  22. self::IS_IDENTICAL_ERROR => 'IS_IDENTICAL_ERROR',
  23. );
  24. public $message = 'This value should not be identical to {{ compared_value_type }} {{ compared_value }}.';
  25. }