And one other (I was waiting for more than one)
Array arrow-alignment doesn't (no longer?) works with class constant keys:
<?php
class Mock {
const one = 1;
const twotwo = 2;
}
$a = [
'one' => 1,
'twotwo' => 2,
];
$b = [
Mock::one => 1,
Mock::twotwo => 2,
];
Having trouble finding the example, but it gets extra wonky with mixed string and constant keys. Sometimes works, sometimes doesn't.