← Back
Editing: ControlTimer.php
<?php namespace App\Validator; use Symfony\Component\Validator\Constraint; #[\Attribute] class ControlTimer extends Constraint { public const CONTROL_DELAY = 7; public string $message = 'Control should not be done right after another one'; public function getTargets(): string { return self::CLASS_CONSTRAINT; } }
Save File
Cancel