| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\de_AT; |
| 4 | |
| 5 | class Company extends \Faker\Provider\Company |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '{{lastName}} {{companySuffix}}', |
| 9 | '{{lastName}}', |
| 10 | ); |
| 11 | |
| 12 | protected static $companySuffix = array('AG', 'EWIV', 'Ges.m.b.H.', 'GmbH', 'KEG', 'KG', 'OEG', 'OG', 'OHG', 'SE'); |
| 13 | } |
| 14 |