| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 47 | public function call() |
||
| 48 | { |
||
| 49 | $response = $this->makeCall(); |
||
| 50 | /** @var \zaporylie\Vipps\Model\Authorization\ResponseGetToken $responseObject */ |
||
| 51 | $responseObject = $this |
||
| 52 | ->getSerializer() |
||
| 53 | ->deserialize( |
||
| 54 | $response->getBody()->getContents(), |
||
| 55 | ResponseGetToken::class, |
||
| 56 | 'json' |
||
| 57 | ); |
||
| 58 | |||
| 59 | return $responseObject; |
||
| 60 | } |
||
| 61 | } |
||
| 62 |