Files
2020-03-27 10:13:51 +07:00

16 lines
341 B
PHP

<?php
namespace Faker\Provider\it_CH;
class Company extends \Faker\Provider\Company
{
protected static $formats = array(
'{{lastName}} {{companySuffix}}',
'{{lastName}} {{lastName}} {{companySuffix}}',
'{{lastName}}',
'{{lastName}}',
);
protected static $companySuffix = array('SA', 'Sarl');
}