I am using php-cs-fixer
with Netbeans 8.2
. It is working perfectly except for one case. My arrays are formatted like below
$array = [
'asdf' => 'a',
'a' => 'b',
'asd' => 'c'
];
But after fixing with php-cs-fixer
, they all changed to
$array = [
'asdf' => 'a',
'a' => 'b',
'asd' => 'c'
];
Is there any way to ignore this section only?