/
home
/
clp
/
htdocs
/
app
/
files
/
src
/
Validator
/
Constraints
/
up file
home
<?php namespace App\Validator\Constraints; use Symfony\Component\Validator\Constraint; /** * @Annotation */ class PortRange extends Constraint { public string $message = 'This value is not valid.'; public function validatedBy(): string { return \get_class($this).'Validator'; } }