| Total Complexity | 1 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class UserStatusType extends EnumType |
||
| 11 | { |
||
| 12 | 1 | public function __construct() |
|
| 13 | { |
||
| 14 | 1 | $config = [ |
|
| 15 | User::STATUS_NEW => 'Nouveau', |
||
| 16 | User::STATUS_ACTIVE => 'Actif', |
||
| 17 | User::STATUS_INACTIVE => 'Inactif', |
||
| 18 | User::STATUS_ARCHIVED => 'Archivé', |
||
| 19 | ]; |
||
| 20 | |||
| 21 | 1 | parent::__construct($config); |
|
| 22 | } |
||
| 24 |