d994ca3d278be196fd90a0b65c74cd0e6a22eafd
[yaffs-website] / 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 }