Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / expr / shortArraySyntax.test
1 Short array syntax
2 -----
3 <?php
4
5 [];
6 array(1, 2, 3);
7 ['a' => 'b', 'c' => 'd'];
8 -----
9 [];
10 array(1, 2, 3);
11 ['a' => 'b', 'c' => 'd'];