1 | <?php |
||
5 | class ShortSyntaxArray |
||
6 | { |
||
7 | /** |
||
8 | * Parses an array and returns a string representation of this array with short syntax [] |
||
9 | * |
||
10 | * @param array $expression |
||
11 | * @param bool $removeNumericIndex |
||
12 | * @param int $indent |
||
13 | * @return string |
||
14 | */ |
||
15 | public static function parse(array $expression, $removeNumericIndex = true, $indent = 4): string |
||
31 | } |
||
32 |