Address.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
DateTime.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
34 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\tr_TR; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '050########', |
| 9 | '053########', |
| 10 | '054########', |
| 11 | '055########', |
| 12 | '0 50# ### ## ##', |
| 13 | '0 53# ### ## ##', |
| 14 | '0 54# ### ## ##', |
| 15 | '0 55# ### ## ##', |
| 16 | '0 (50#) ### ## ##', |
| 17 | '0 (53#) ### ## ##', |
| 18 | '0 (54#) ### ## ##', |
| 19 | '0 (55#) ### ## ##', |
| 20 | '+9050########', |
| 21 | '+9053########', |
| 22 | '+9054########', |
| 23 | '+9055########', |
| 24 | '+90 50# ### ## ##', |
| 25 | '+90 53# ### ## ##', |
| 26 | '+90 54# ### ## ##', |
| 27 | '+90 55# ### ## ##', |
| 28 | '+90 (50#) ### ## ##', |
| 29 | '+90 (53#) ### ## ##', |
| 30 | '+90 (54#) ### ## ##', |
| 31 | '+90 (55#) ### ## ##' |
| 32 | ); |
| 33 | } |
| 34 |