File manager - Edit - /home/autoph/public_html/tasks/vendor/bogdaan/viber-bot-php/src/Api/Response.php
Back
<?php namespace Viber\Api; use Viber\Api\Exception\ApiException; /** * Manage backend response, translate api error ot exception * * @author Novikov Bogdan <hcbogdan@gmail.com> */ class Response { /** * Raw response data * * @var array */ protected $data; /** * Create api response from http-response * * @param \GuzzleHttp\Psr7\Response $response network response * @return \Viber\Api\Response * @throws \Viber\Api\Exception\ApiException */ public static function create(\GuzzleHttp\Psr7\Response $response) { // - validate body $data = json_decode($response->getBody(), true, 512, JSON_BIGINT_AS_STRING); if (empty($data)) { throw new ApiException('Invalid response body'); } // - validate internal data if (isset($data['status'])) { if ($data['status'] != 0) { throw new ApiException('Remote error: ' . (isset($data['status_message']) ? $data['status_message'] : '-'), $data['status']); } $item = new self(); $item->data = $data; return $item; } throw new ApiException('Invalid response json'); } /** * Get the value of Raw response data * * @return array */ public function getData() { return $this->data; } }
| ver. 1.4 |
.
| PHP 7.3.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings