kokororin / vscode-phpfmt

Integrates phpfmt into VS Code
https://marketplace.visualstudio.com/items?itemName=kokororin.vscode-phpfmt
BSD 3-Clause "New" or "Revised" License
129 stars 30 forks source link

Add DeclareEqualNormalizeFixer #57

Closed melyouz closed 1 year ago

melyouz commented 5 years ago

Is there any option to have this:

declare(strict_types=1);

Instead of this:

declare(strict_types = 1);
                  --^ ^--    (I got a kitty)

It's annoying because every time I save a file, I get the spaces:

- declare(strict_types=1);
+ declare(strict_types = 1);