class UnitTestDummyHandlerInterrupt in Acquia Cloud Site Factory Connector 8.2
Same name and namespace in other branches
- 8 tests/UnitTestDummyHandlerInterrupt.php \UnitTestDummyHandlerInterrupt
UnitTestDummyHandlerInterrupt.
Hierarchy
- class \Drupal\acsf\Event\AcsfEventHandler
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AcsfEventHandler:: |
public | property | The time that the handler was completed. | |
AcsfEventHandler:: |
public | property | Any messages triggered by the handler. | |
AcsfEventHandler:: |
public | property | The time that the handler was started. | |
AcsfEventHandler:: |
public | function | Writes a log message to the console. | |
AcsfEventHandler:: |
public | function | Constructor. | 1 |
UnitTestDummyHandlerInterrupt:: |
public | function |
Dummy handler. Overrides AcsfEventHandler:: |