<?php
use Chubbyphp\Validation\Constraint\NotNullConstraint;
use Chubbyphp\Validation\ValidatorContextInterface;
$constraint = new NotNullConstraint();
/** @var ValidatorContextInterface $context */
$context = ...;
$errors = $constraint->validate(
'path.to.property',
'',
$context
);
// [];
$errors = $constraint->validate(
'path.to.property',
null,
$context
);
// [
// new Error(
// 'path.to.property',
// 'constraint.notnull.null'
// )
// ];
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.