cjohansson / emacs-phps-mode

Emacs major mode for PHP with code intelligence
GNU General Public License v3.0
35 stars 2 forks source link

Failing indentation correctly for multi-dimensional shorthand array without trailing comma #9

Closed cjohansson closed 5 years ago

cjohansson commented 5 years ago

Actual

<?php

$array = [
    'second' => [
        'hello' => true
        ]
];

Expected

<?php

$array = [
    'second' => [
        'hello' => true
    ]
];