whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
vonage
/
client-core
/
src
/
Client
/
Response
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/vonage/client-core/src/Client/Response/AbstractResponse.php
<?php declare(strict_types=1); namespace Vonage\Client\Response; abstract class AbstractResponse implements ResponseInterface { /** * @var array */ protected $data; public function getData(): array { return $this->data; } public function isSuccess(): bool { return isset($this->data['status']) && (int)$this->data['status'] === 0; } public function isError(): bool { return !$this->isSuccess(); } }
Copyright ©2021 || Defacer Indonesia