Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / league / container / src / Argument / RawArgumentInterface.php
diff --git a/vendor/league/container/src/Argument/RawArgumentInterface.php b/vendor/league/container/src/Argument/RawArgumentInterface.php
new file mode 100644 (file)
index 0000000..85d9221
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+namespace League\Container\Argument;
+
+interface RawArgumentInterface
+{
+    /**
+     * Return the value of the raw argument.
+     *
+     * @return mixed
+     */
+    public function getValue();
+}