first commit

This commit is contained in:
Roman Pyrih
2025-07-11 12:34:24 +02:00
commit 296b13244b
10181 changed files with 3916595 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
<?php
namespace Analyst;
class ApiResponse
{
/**
* Response headers
*
* @var array
*/
public $headers;
/**
* Response body
*
* @var mixed
*/
public $body;
/**
* Status code
*
* @var string
*/
public $code;
public function __construct($body, $code, $headers)
{
$this->body = $body;
$this->code = $code;
$this->headers = $headers;
}
/**
* Whether status code is successful
*
* @return bool
*/
public function isSuccess()
{
return $this->code >= 200 && $this->code < 300;
}
}