class AcsfMessageUnitTestMissingResponse in Acquia Cloud Site Factory Connector 8.2
Same name and namespace in other branches
- 8 tests/AcsfMessageUnitTestMissingResponse.inc \AcsfMessageUnitTestMissingResponse
AcsfMessageUnitTestMissingResponse.
Hierarchy
- class \Drupal\acsf\AcsfMessage
Expanded class hierarchy of AcsfMessageUnitTestMissingResponse
File
- tests/
AcsfMessageUnitTestMissingResponse.inc, line 8
View source
class AcsfMessageUnitTestMissingResponse extends AcsfMessage {
/**
* Implements AcsfMessage::sendMessage().
*/
protected function sendMessage($url, $method, $endpoint, array $parameters, $username, $password) {
return new AcsfMessageResponseUnitTest('unit.test.endpoint', 0, NULL);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AcsfMessage:: |
protected | property | An optional Acquia Hosting environment. | |
AcsfMessage:: |
protected | property | An optional Acquia Hosting sitegroup. | |
AcsfMessage:: |
private | property | An optional AcsfConfig object. | |
AcsfMessage:: |
protected | property | The message endpoint on the remote server. | |
AcsfMessage:: |
protected | property | An unstructured list of parameters to send with the request. | |
AcsfMessage:: |
protected | property | The AcsfMessageResponse object. | |
AcsfMessage:: |
public | function | Retrieves the response body. | |
AcsfMessage:: |
public | function | Retrieves the response code. | |
AcsfMessage:: |
protected | function | Allows client code to optionally run logic after the response is received. | |
AcsfMessage:: |
public | function | Sends the message to the remote server. | |
AcsfMessage:: |
public | function | Constructor. | 1 |
AcsfMessageUnitTestMissingResponse:: |
protected | function |
Implements AcsfMessage::sendMessage(). Overrides AcsfMessage:: |