Further modules included.
[yaffs-website] / web / modules / contrib / libraries / src / ExternalLibrary / Utility / LibraryAccessorInterface.php
diff --git a/web/modules/contrib/libraries/src/ExternalLibrary/Utility/LibraryAccessorInterface.php b/web/modules/contrib/libraries/src/ExternalLibrary/Utility/LibraryAccessorInterface.php
new file mode 100644 (file)
index 0000000..72b0093
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\libraries\ExternalLibrary\Utility;
+
+/**
+ * Provides an interface for classes giving access to a library.
+ */
+interface LibraryAccessorInterface {
+
+  /**
+   * Returns the library.
+   *
+   * @return \Drupal\libraries\ExternalLibrary\LibraryInterface
+   *   The library.
+   */
+  public function getLibrary();
+
+}