Address.php
5 years ago
Company.php
5 years ago
Internet.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
PhoneNumber.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\ja_JP; |
| 4 | |
| 5 | class PhoneNumber extends \Faker\Provider\PhoneNumber |
| 6 | { |
| 7 | /** |
| 8 | * @link http://www.soumu.go.jp/main_sosiki/joho_tsusin/top/tel_number/number_shitei.html#kotei-denwa |
| 9 | */ |
| 10 | protected static $formats = array( |
| 11 | '080-####-####', |
| 12 | '090-####-####', |
| 13 | '0#-####-####', |
| 14 | '0####-#-####', |
| 15 | '0###-##-####', |
| 16 | '0##-###-####', |
| 17 | '0##0-###-###', |
| 18 | ); |
| 19 | } |
| 20 |