HEX
Server: Apache
System: Linux webm013.cluster123.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/www/wp-content/plugins/redirect-redirection/analyst/src/ApiResponse.php
<?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;
	}
}