-
-
Notifications
You must be signed in to change notification settings - Fork 737
Closed
Labels
Description
Bug Report
| Subject | Details |
|---|---|
| Rector version | last dev-main |
| Installed as | composer dependency |
Minimal PHP Code Causing Issue
See https://getrector.com/demo/fe2978d5-c66a-4b39-a62b-ec005b71544d
<?php
final class DemoFile
{
public function run()
{
$ok = array(
'ok' => 'ok!',
'KO' => 'KO!'
);
}
}Responsible rules
LongArrayToShortArrayRector
Expected Behavior
The array was changed to a single line
$ok = ['ok' => 'ok!', "KO" => "KO!"];instead of keeping the structure
$ok = [
'ok' => 'ok!',
'KO' => 'KO!'
];Reactions are currently unavailable