phpowermove / php-code-formatter

A code formatting library for php
MIT License
29 stars 12 forks source link

Array Indentation #11

Open gossi opened 9 years ago

gossi commented 9 years ago

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',
    // ...
]);