Address.php
5 years ago
Company.php
5 years ago
Internet.php
5 years ago
Payment.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
PhoneNumber.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\it_IT; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '+## ### ## ## ####', |
| 9 | '+## ## #######', |
| 10 | '+## ## ########', |
| 11 | '+## ### #######', |
| 12 | '+## ### ########', |
| 13 | '+## #### #######', |
| 14 | '+## #### ########', |
| 15 | // According to http://it.wikipedia.org/wiki/Prefisso_telefonico#Elenco_degli_indicativi_in_Italia.2C_a_San_Marino_e_nel_Vaticano |
| 16 | '0## ### ####', |
| 17 | '+39 0## ### ###', |
| 18 | '3## ### ###', |
| 19 | '+39 3## ### ###' |
| 20 | ); |
| 21 | } |
| 22 |