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
Company.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\el_CY; |
| 4 | |
| 5 | class Company extends \Faker\Provider\Company |
| 6 | { |
| 7 | protected static $companySuffix = array( |
| 8 | 'ΛΤΔ', |
| 9 | 'Δημόσια εταιρεία', |
| 10 | '& Υιοι', |
| 11 | '& ΣΙΑ', |
| 12 | ); |
| 13 | |
| 14 | protected static $formats = array( |
| 15 | '{{lastName}} {{companySuffix}}', |
| 16 | '{{lastName}}-{{lastName}}', |
| 17 | ); |
| 18 | } |
| 19 |