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