Adding a new Symfony Validator Constraint

Code
<?php

use Symfony\Component\Validator\Constraint;
use 
Symfony\Component\Validator\ConstraintValidator;
use 
Symfony\Component\Validator\Exception\UnexpectedTypeException;
use 
Symfony\Component\Validator\ValidatorBuilder;

/**
 * @Annotation
 * @Target({"PROPERTY", "METHOD", "ANNOTATION"})
 */
class Bacon extends Constraint
{
    public 
$message 'The validator checks bacon and your argument is invalid.';
}

class 
BaconValidator extends ConstraintValidator
{
    public function 
validate($valueConstraint $constraint)
    {
        if (!
$constraint instanceof Bacon) {
            throw new 
UnexpectedTypeException($constraintBacon::CLASS);
        }

        if (
'bacon' === strtolower($value)) {
            return;
        }

        
$this->context->addViolation($constraint->message, array(
            
'{{ value }}' => $this->formatValue($value),
        ));
    }
}

// see http://php.budgegeria.de/inyvqngvba6 for how symfony validation with annotation works

class Foo
{
    
/**
     * @Bacon
     */
    
public $breakfast;
}

$foo = new Foo();
$foo->breakfast 'not bacon';

$validator = (new ValidatorBuilder())
    ->
enableAnnotationMapping()
    ->
getValidator();

$violationList $validator->validate($foo);

foreach(
$violationList as $v) {
    echo 
$v->getMessage() . PHP_EOL;
}
Result
The validator checks bacon and your argument is invalid.
Used Versions
PHP 8.2, Laminas MVC 3.2, Symfony 5.2, Laravel 8.28, PHPUnit 9.5, Doctrine ORM 2.8