1 | <?php |
||
23 | final class PhoneNumberValidator implements PhoneNumberValidatorInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var PhoneNumberUtil |
||
27 | */ |
||
28 | private $phoneNumberUtil; |
||
29 | |||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | private $countryCode; |
||
34 | |||
35 | public function __construct(PhoneNumberUtil $phoneNumberUtil, string $countryCode) |
||
40 | |||
41 | public function validate(string $phoneNumber, string $countryCode = null): void |
||
53 | } |
||
54 |