. */ namespace App\Validator\Constraints; use Symfony\Component\Validator\Constraint; /** * A constraint to validate the theme setting of the user. * @Annotation */ class ValidTheme extends Constraint { public string $message = 'validator.selected_theme_is_invalid'; }