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