You are here

class UnitTestDummyHandlerInterrupt in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 tests/UnitTestDummyHandlerInterrupt.php \UnitTestDummyHandlerInterrupt

UnitTestDummyHandlerInterrupt.

Hierarchy

Expanded class hierarchy of UnitTestDummyHandlerInterrupt

1 string reference to 'UnitTestDummyHandlerInterrupt'
acsf_get_registry in tests/AcsfEventsTest.php
Mocks acsf_get_registry for testing.

File

tests/UnitTestDummyHandlerInterrupt.php, line 8

View source
class UnitTestDummyHandlerInterrupt extends AcsfEventHandler {

  /**
   * Dummy handler.
   */
  public function handle() {
    $this->event->dispatcher
      ->interrupt();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AcsfEventHandler::$completed public property The time that the handler was completed.
AcsfEventHandler::$message public property Any messages triggered by the handler.
AcsfEventHandler::$started public property The time that the handler was started.
AcsfEventHandler::__construct public function Constructor. 1
UnitTestDummyHandlerInterrupt::handle public function Dummy handler. Overrides AcsfEventHandler::handle