| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider\fr_BE; |
| 4 | |
| 5 | class Company extends \Faker\Provider\fr_FR\Company |
| 6 | { |
| 7 | protected static $formats = array( |
| 8 | '{{lastName}} {{companySuffix}}', |
| 9 | '{{lastName}}', |
| 10 | ); |
| 11 | |
| 12 | protected static $companySuffix = array('ASBL', 'SCS', 'SNC', 'SPRL', 'Associations', 'Entreprise individuelle', 'GEIE', 'GIE', 'SA', 'SCA', 'SCRI', 'SCRL'); |
| 13 | } |
| 14 |