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