I have an entity for which I use Regex and NotBlank to validate. I need this field to contain only English letters, without numbers. Everything works fine, but when I post Cyrillic I don't get an error. Why is that? I need only English
/**
* @var string
*
* @Assert\NotBlank()
* @Assert\Regex(
* pattern= "/^\w+/",
* match= false,
* message= "This text cannot contain numbers"
* )
*