class SimpleRestResponse in Acquia Cloud Site Factory Connector 8
Same name in this branch
- 8 acsf_init/lib/sites/g/SimpleRest.php \Acquia\SimpleRest\SimpleRestResponse
- 8 acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php \SimpleRestResponse
Same name and namespace in other branches
- 8.2 acsf_init/lib/cloud_hooks/common/pre-web-activate/000-acquia-deployment.php \SimpleRestResponse
Class SimpleRestResponse.
Holds the response.
Hierarchy
- class \SimpleRestResponse
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SimpleRestResponse:: |
public | property | The response body. | |
SimpleRestResponse:: |
public | property | The response code. | |
SimpleRestResponse:: |
public | property | The request endpoint. | |
SimpleRestResponse:: |
public | function | Constructs a new instance of SimpleRestResponse. |