IsNull.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. #[\Attribute(\Attribute::TARGET_PROPERTY | \Attribute::TARGET_METHOD | \Attribute::IS_REPEATABLE)]
  19. class IsNull extends Constraint
  20. {
  21. public const NOT_NULL_ERROR = '60d2f30b-8cfa-4372-b155-9656634de120';
  22. protected static $errorNames = [
  23. self::NOT_NULL_ERROR => 'NOT_NULL_ERROR',
  24. ];
  25. public $message = 'This value should be null.';
  26. public function __construct(array $options = null, string $message = null, array $groups = null, $payload = null)
  27. {
  28. parent::__construct($options ?? [], $groups, $payload);
  29. $this->message = $message ?? $this->message;
  30. }
  31. }