duster
duster copied to clipboard
How to omit `New without parentheses` in duster from 8.4
Previously,
(new SendCustomerCreatedNotification())->handle($user);
Now with php8.4 I can use
new SendCustomerCreatedNotification()->handle($user);
But with this I get syntax error:
Parse error: syntax error, unexpected token "->" on line 82.
Is there any way to configure this?
Thanks in advance.
Pending https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/milestone/173