mirror of
https://github.com/bitinflow/bunny-cli.git
synced 2026-03-13 13:45:54 +00:00
31 lines
543 B
PHP
31 lines
543 B
PHP
<?php
|
|
|
|
|
|
namespace App\Bunny;
|
|
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
class Result
|
|
{
|
|
private ResponseInterface $response;
|
|
|
|
private $data;
|
|
|
|
public function __construct(ResponseInterface $response)
|
|
{
|
|
$this->response = $response;
|
|
$this->data = json_decode($this->response->getBody()->getContents(), false);
|
|
}
|
|
|
|
public function getData()
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
public function success(): bool
|
|
{
|
|
return in_array(floor($this->response->getStatusCode() / 100), [2]);
|
|
}
|
|
}
|