1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-22 00:09:59 +01:00

company types

This commit is contained in:
Wim Vandersmissen 2013-02-25 14:15:11 +01:00
parent d3bbd39a6d
commit 52dd699c84

View File

@ -0,0 +1,13 @@
<?php
namespace Faker\Provider\nl_BE;
class Company extends \Faker\Provider\Company
{
protected static $formats = array(
'{{lastName}} {{companySuffix}}',
'{{lastName}}',
);
protected static $companySuffix = array('VZW', 'Comm.V', 'VOF', 'BVBA', 'EBVBA', 'ESV', 'NV', 'Comm.VA', 'CVOA', 'CVBA', '& Zonen', '& Zn');
}