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
Text.php
5 years ago
Internet.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\zh_TW; |
| 4 | |
| 5 | class Internet extends \Faker\Provider\Internet |
| 6 | { |
| 7 | public function userName() |
| 8 | { |
| 9 | return \Faker\Factory::create('en_US')->userName(); |
| 10 | } |
| 11 | |
| 12 | public function domainWord() |
| 13 | { |
| 14 | return \Faker\Factory::create('en_US')->domainWord(); |
| 15 | } |
| 16 | } |
| 17 |