. */ namespace App\Validator\Constraints\ProjectSystem; use Symfony\Component\Validator\Constraint; /** * This constraint checks that the given ProjectBuildRequest is valid. * * @Annotation */ class ValidProjectBuildRequest extends Constraint { public function getTargets(): string { return self::CLASS_CONSTRAINT; } }