. */ declare(strict_types=1); namespace App\Validator\Constraints; use Symfony\Component\Validator\Constraint; /** * This constraint restricts a user in that way that it can not lock itself out of the user system. * * @Annotation */ class NoLockout extends Constraint { public string $message = 'validator.noLockout'; }