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