| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class SwissWindsurfTypeType extends EnumType |
||
| 10 | { |
||
| 11 | 1 | public function __construct() |
|
| 12 | { |
||
| 13 | 1 | $config = [ |
|
| 14 | \Application\DBAL\Types\SwissWindsurfTypeType::ACTIVE => 'Actif', |
||
| 15 | \Application\DBAL\Types\SwissWindsurfTypeType::PASSIVE => 'Passif', |
||
| 16 | ]; |
||
| 17 | |||
| 18 | 1 | parent::__construct($config); |
|
| 19 | } |
||
| 21 |