You are here

class AcsfMessageUnitTestMissingResponse in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 tests/AcsfMessageUnitTestMissingResponse.inc \AcsfMessageUnitTestMissingResponse

AcsfMessageUnitTestMissingResponse.

Hierarchy

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

Namesort descending Modifiers Type Description Overrides
AcsfMessage::$ahEnv protected property An optional Acquia Hosting environment.
AcsfMessage::$ahSite protected property An optional Acquia Hosting sitegroup.
AcsfMessage::$config private property An optional AcsfConfig object.
AcsfMessage::$endpoint protected property The message endpoint on the remote server.
AcsfMessage::$parameters protected property An unstructured list of parameters to send with the request.
AcsfMessage::$response protected property The AcsfMessageResponse object.
AcsfMessage::getResponseBody public function Retrieves the response body.
AcsfMessage::getResponseCode public function Retrieves the response code.
AcsfMessage::receiveResponse protected function Allows client code to optionally run logic after the response is received.
AcsfMessage::send public function Sends the message to the remote server.
AcsfMessage::__construct public function Constructor. 1
AcsfMessageUnitTestMissingResponse::sendMessage protected function Implements AcsfMessage::sendMessage(). Overrides AcsfMessage::sendMessage