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
PhoneNumber.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\sl_SI; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '+386 ## ### ###', |
| 9 | '00386 ## ### ###', |
| 10 | '0## ### ###', |
| 11 | '00386########', |
| 12 | '+386########', |
| 13 | '0########', |
| 14 | '+386 # ### ####', |
| 15 | '00386 # ### ####', |
| 16 | '0# ### ####' |
| 17 | ); |
| 18 | } |
| 19 |