| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\fr_CH; |
| 4 | |
| 5 | class Company extends \Faker\Provider\fr_FR\Company |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '{{lastName}} {{companySuffix}}', |
| 9 | '{{lastName}} {{lastName}} {{companySuffix}}', |
| 10 | '{{lastName}}', |
| 11 | '{{lastName}}', |
| 12 | ); |
| 13 | |
| 14 | protected static $companySuffix = array('AG', 'Sàrl', 'SA', 'GmbH'); |
| 15 | } |
| 16 |