openstackid/app/libs/Utils/Http/HttpResponse.php

74 lines
1.3 KiB
PHP

<?php namespace Utils\Http;
/**
* Class HttpResponse
* @package Utils\Http
*/
abstract class HttpResponse extends HttpMessage
{
const HttpOkResponse = 200;
const HttpErrorResponse = 400;
/**
* @var int
*/
protected $http_code;
/**
* @var string
*/
protected $content_type;
/**
* HttpResponse constructor.
* @param int $http_code
* @param string $content_type
*/
public function __construct($http_code, $content_type)
{
parent::__construct();
$this->http_code = $http_code;
$this->content_type = $content_type;
}
abstract public function getContent();
/**
* @return int
*/
public function getHttpCode()
{
return $this->http_code;
}
/**
* @param int $http_code
* @return $this;
*/
protected function setHttpCode($http_code)
{
$this->http_code = $http_code;
return $this;
}
/**
* @return string
*/
public function getContentType()
{
return $this->content_type;
}
/**
* @return mixed
*/
abstract public function getType();
/**
* @param string $name
* @param mixed $value
* @return $this
*/
public function addParam($name, $value)
{
$this[$name] = $value;
return $this;
}
}