mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-11 16:49:43 +01:00
12 lines
158 B
Plaintext
12 lines
158 B
Plaintext
|
Short array syntax
|
||
|
-----
|
||
|
<?php
|
||
|
|
||
|
[];
|
||
|
array(1, 2, 3);
|
||
|
['a' => 'b', 'c' => 'd'];
|
||
|
-----
|
||
|
!!both {"shortArraySyntax": true}
|
||
|
[];
|
||
|
[1, 2, 3];
|
||
|
['a' => 'b', 'c' => 'd'];
|