Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / league / container / src / ContainerAwareInterface.php
diff --git a/vendor/league/container/src/ContainerAwareInterface.php b/vendor/league/container/src/ContainerAwareInterface.php
new file mode 100644 (file)
index 0000000..8addd2f
--- /dev/null
@@ -0,0 +1,20 @@
+<?php
+
+namespace League\Container;
+
+interface ContainerAwareInterface
+{
+    /**
+     * Set a container
+     *
+     * @param \League\Container\ContainerInterface $container
+     */
+    public function setContainer(ContainerInterface $container);
+
+    /**
+     * Get the container
+     *
+     * @return \League\Container\ContainerInterface
+     */
+    public function getContainer();
+}