Version 1
[yaffs-website] / web / core / modules / system / tests / modules / module_install_class_loader_test2 / src / EventSubscriber.php
diff --git a/web/core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php b/web/core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
new file mode 100644 (file)
index 0000000..d994ca3
--- /dev/null
@@ -0,0 +1,19 @@
+<?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 [];
+  }
+
+}