Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / grasmash / expander / src / StringifierInterface.php
diff --git a/vendor/grasmash/expander/src/StringifierInterface.php b/vendor/grasmash/expander/src/StringifierInterface.php
new file mode 100644 (file)
index 0000000..83a376d
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Grasmash\Expander;
+
+interface StringifierInterface
+{
+    /**
+     * Converts array to string.
+     *
+     * @param array $array
+     *   The array to convert.
+     *
+     * @return string
+     *   The resultant string.
+     */
+    public static function stringifyArray(array $array);
+}