* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ use Symfony\Component\Validator\Constraint; use Symfony\Component\Validator\ConstraintValidator; class NotNullValidator extends ConstraintValidator { public function isValid($value, Constraint $constraint) { if (is_null($value)) { $this->setMessage($constraint->message); return false; } return true; } }