Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-driver / src / Drupal / Driver / SubDriverFinderInterface.php
diff --git a/vendor/drupal/drupal-driver/src/Drupal/Driver/SubDriverFinderInterface.php b/vendor/drupal/drupal-driver/src/Drupal/Driver/SubDriverFinderInterface.php
new file mode 100644 (file)
index 0000000..00f7ad1
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\Driver;
+
+/**
+ * Interface for discovery of sub-drivers.
+ */
+interface SubDriverFinderInterface {
+
+  /**
+   * Returns an array of paths in which to look for Drupal sub-drivers.
+   *
+   * @return array
+   *   An array of paths in which to find sub-drivers.
+   */
+  public function getSubDriverPaths();
+
+}