You are here

class SimpleRestResponse in Acquia Cloud Site Factory Connector 8.2

Same name in this branch
  1. 8.2 acsf_init/lib/sites/g/SimpleRest.php \Acquia\SimpleRest\SimpleRestResponse
  2. 8.2 acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php \SimpleRestResponse
Same name and namespace in other branches
  1. 8 acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php \SimpleRestResponse

Class SimpleRestResponse.

Holds the response.

Hierarchy

Expanded class hierarchy of SimpleRestResponse

File

acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php, line 453
This script is responsible for deploying theme files on each webnode.

View source
class SimpleRestResponse {

  /**
   * The request endpoint.
   *
   * @var string
   */
  public $endpoint;

  /**
   * The response code.
   *
   * @var string
   */
  public $code;

  /**
   * The response body.
   *
   * @var array
   */
  public $body;

  /**
   * Constructs a new instance of SimpleRestResponse.
   *
   * @param string $endpoint
   *   The request endpoint.
   * @param string $response_code
   *   The response code.
   * @param array $response_body
   *   The response body.
   */
  public function __construct($endpoint, $response_code, array $response_body) {
    $this->endpoint = $endpoint;
    $this->code = $response_code;
    $this->body = $response_body;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SimpleRestResponse::$body public property The response body.
SimpleRestResponse::$code public property The response code.
SimpleRestResponse::$endpoint public property The request endpoint.
SimpleRestResponse::__construct public function Constructs a new instance of SimpleRestResponse.