class AcsfMessageUnitTestMissingEndpoint in Acquia Cloud Site Factory Connector 8
Same name and namespace in other branches
- 8.2 tests/AcsfMessageUnitTestMissingEndpoint.inc \AcsfMessageUnitTestMissingEndpoint
AcsfMessageUnitTestMissingEndpoint.
Hierarchy
- class \Drupal\acsf\AcsfMessage
Expanded class hierarchy of AcsfMessageUnitTestMissingEndpoint
File
- tests/
AcsfMessageUnitTestMissingEndpoint.inc, line 8
View source
class AcsfMessageUnitTestMissingEndpoint extends AcsfMessage {
/**
* Implements AcsfMessage::sendMessage().
*/
protected function sendMessage($url, $method, $endpoint, array $parameters, $username, $password) {
return new AcsfMessageResponseUnitTest(NULL, 0, 'response body');
}
}
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 |
AcsfMessageUnitTestMissingEndpoint:: |
protected | function |
Implements AcsfMessage::sendMessage(). Overrides AcsfMessage:: |