Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
68 | public function getParameters() |
||
69 | { |
||
70 | $parameters = [ |
||
71 | 'REFERENCE' => $this->reference, |
||
72 | 'MONTANT' => $this->amount, |
||
73 | 'PORTEUR' => $this->cardSerial, |
||
74 | 'DATEVAL' => $this->cardValidity, |
||
75 | ]; |
||
76 | |||
77 | if (null !== $this->cardVerificationValue) { |
||
78 | $parameters['CVV'] = $this->cardVerificationValue; |
||
79 | } |
||
80 | |||
81 | return $parameters; |
||
82 | } |
||
83 | } |
||
84 |