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