| 1 | <?php |
||
| 13 | final class PhoneNumber extends AbstractConstraint |
||
| 14 | { |
||
| 15 | const ANY = 'any'; |
||
| 16 | |||
| 17 | public $country = self::ANY; |
||
| 18 | |||
| 19 | public $message = 'This value is not a valid phone number.'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function __construct($options = null) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function getIsoCodesVersion() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function getIsoCodesClass() |
||
| 46 | } |
||
| 47 |