Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class PaymentMethodType extends EnumType |
||
10 | { |
||
11 | 1 | public function __construct() |
|
12 | { |
||
13 | 1 | $config = [ |
|
14 | \Application\DBAL\Types\PaymentMethodType::DATATRANS => 'Carte de crédit', |
||
15 | \Application\DBAL\Types\PaymentMethodType::EBANKING => 'Virement bancaire', |
||
16 | \Application\DBAL\Types\PaymentMethodType::BVR => 'Bulletin de versement', |
||
17 | ]; |
||
18 | |||
19 | 1 | parent::__construct($config); |
|
20 | } |
||
22 |