We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
If you have a problem with the letters in the phone number, as is the case with Russian numbers, this method will help you
['phone', 'filter', 'filter' => [$this, 'normalizePhone']],
public function normalizePhone($value) { $phone = preg_match("@[A-z]@u", $value); return !$phone ? $value : false; }