Drupal investigation

IsNullValidator.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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\Context\ExecutionContextInterface;
  12. use Symfony\Component\Validator\Constraint;
  13. use Symfony\Component\Validator\ConstraintValidator;
  14. use Symfony\Component\Validator\Exception\UnexpectedTypeException;
  15. /**
  16. * @author Bernhard Schussek <bschussek@gmail.com>
  17. */
  18. class IsNullValidator extends ConstraintValidator
  19. {
  20. /**
  21. * {@inheritdoc}
  22. */
  23. public function validate($value, Constraint $constraint)
  24. {
  25. if (!$constraint instanceof IsNull) {
  26. throw new UnexpectedTypeException($constraint, __NAMESPACE__.'\IsNull');
  27. }
  28. if (null !== $value) {
  29. if ($this->context instanceof ExecutionContextInterface) {
  30. $this->context->buildViolation($constraint->message)
  31. ->setParameter('{{ value }}', $this->formatValue($value))
  32. ->setCode(IsNull::NOT_NULL_ERROR)
  33. ->addViolation();
  34. } else {
  35. $this->buildViolation($constraint->message)
  36. ->setParameter('{{ value }}', $this->formatValue($value))
  37. ->setCode(IsNull::NOT_NULL_ERROR)
  38. ->addViolation();
  39. }
  40. }
  41. }
  42. }