Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
55 | public function call() |
||
56 | { |
||
57 | $response = $this->makeCall(); |
||
58 | $body = $response->getBody()->getContents(); |
||
59 | /** @var \zaporylie\Vipps\Model\Payment\ResponseRefundPayment $responseObject */ |
||
60 | $responseObject = $this |
||
61 | ->getSerializer() |
||
62 | ->deserialize( |
||
63 | $body, |
||
64 | ResponseRefundPayment::class, |
||
65 | 'json' |
||
66 | ); |
||
67 | |||
68 | return $responseObject; |
||
69 | } |
||
70 | } |
||
71 |