EventSubscriber.php in Drupal 8
Same filename in this branch
- 8 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
- 8 core/modules/config/tests/config_import_test/src/EventSubscriber.php
- 8 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
- 8 core/modules/config/tests/config_events_test/src/EventSubscriber.php
- 8 core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
- 8 core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
Namespace
Drupal\module_install_class_loader_test2File
core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.phpView source
<?php
namespace Drupal\module_install_class_loader_test2;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* An event subscriber that does nothing.
*/
class EventSubscriber implements EventSubscriberInterface {
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
return [];
}
}
Classes
Name | Description |
---|---|
EventSubscriber | An event subscriber that does nothing. |