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
21 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\is_IS; |
| 4 | |
| 5 | /** |
| 6 | * @author Birkir Gudjonsson <birkir.gudjonsson@gmail.com> |
| 7 | */ |
| 8 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 9 | { |
| 10 | /** |
| 11 | * @var array Icelandic phone number formats. |
| 12 | */ |
| 13 | protected static $formats = array( |
| 14 | '+354 ### ####', |
| 15 | '+354 #######', |
| 16 | '+354#######', |
| 17 | '### ####', |
| 18 | '#######', |
| 19 | ); |
| 20 | } |
| 21 |