Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / grasmash / expander / src / StringifierInterface.php
1 <?php
2
3 namespace Grasmash\Expander;
4
5 interface StringifierInterface
6 {
7     /**
8      * Converts array to string.
9      *
10      * @param array $array
11      *   The array to convert.
12      *
13      * @return string
14      *   The resultant string.
15      */
16     public static function stringifyArray(array $array);
17 }