Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
62 | public function getParameters() |
||
63 | { |
||
64 | $parameters = [ |
||
65 | 'PORTEUR' => $this->cardSerial, |
||
66 | 'DATEVAL' => $this->cardValidity, |
||
67 | ]; |
||
68 | |||
69 | if (null !== $this->cardVerificationValue) { |
||
70 | $parameters['CVV'] = $this->cardVerificationValue; |
||
71 | } |
||
72 | |||
73 | return array_merge(parent::getParameters(), $parameters); |
||
74 | } |
||
75 | } |
||
76 |