Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function getData(): array |
||
23 | { |
||
24 | $parameters = $this->getParameters(); |
||
25 | call_user_func_array( |
||
26 | [$this, 'validate'], |
||
27 | $this->getSignatureParameters() |
||
28 | ); |
||
29 | $parameters['vpc_SecureHash'] = $this->generateSignature(); |
||
30 | unset($parameters['vpc_HashKey'], $parameters['testMode']); |
||
31 | |||
32 | return $parameters; |
||
33 | } |
||
34 | } |
||
35 |