-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Milestone
Description
Properly indent arrays.
Occurences:
// two syntaxes
$oldSyntax = array(...);
$newSyntax = [...];
// map/object style
$map = [
'key' => 'value',
'key2' => 'value2',
// ...
];
// list
$list = ['elem1', 'elem2', 'elem3', ... ];Locations:
// assignments
$simple = [
'key' => 'value',
'key2' => 'value2',
// ...
];
// params
$bla = new Foo([
'option' => 'val',
'option2' => 'val2',
// ...
]);