27 lines
380 B
PHP
27 lines
380 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Enums;
|
||
|
|
|
||
|
|
use BenSampo\Enum\Enum;
|
||
|
|
|
||
|
|
final class LegalForm extends Enum
|
||
|
|
{
|
||
|
|
const SARL = 'sarl';
|
||
|
|
|
||
|
|
const SA = 'sa';
|
||
|
|
|
||
|
|
const SNC = 'snc';
|
||
|
|
|
||
|
|
const SCS = 'scs';
|
||
|
|
|
||
|
|
const EURL = 'eurl';
|
||
|
|
|
||
|
|
const SEL = 'sel';
|
||
|
|
|
||
|
|
const AutoEntrepreneur = 'auto_entrepreneur';
|
||
|
|
|
||
|
|
const EntrepriseIndividuelle = 'entreprise_individuelle';
|
||
|
|
|
||
|
|
const Other = 'other';
|
||
|
|
}
|