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
Company.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\ja_JP; |
| 4 | |
| 5 | class Company extends \Faker\Provider\Company |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '{{companyPrefix}} {{lastName}}' |
| 9 | ); |
| 10 | |
| 11 | protected static $companyPrefix = array('株式会社', '有限会社'); |
| 12 | |
| 13 | public static function companyPrefix() |
| 14 | { |
| 15 | return static::randomElement(static::$companyPrefix); |
| 16 | } |
| 17 | } |
| 18 |