Version 1
[yaffs-website] / web / core / modules / system / tests / modules / module_install_class_loader_test2 / src / EventSubscriber.php
1 <?php
2
3 namespace Drupal\module_install_class_loader_test2;
4
5 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
6
7 /**
8  * An event subscriber that does nothing.
9  */
10 class EventSubscriber implements EventSubscriberInterface {
11
12   /**
13    * {@inheritdoc}
14    */
15   public static function getSubscribedEvents() {
16     return [];
17   }
18
19 }