driade / phpfmt8

PHP formatter for Sublime Text 4, with PHP 8 support.
BSD 3-Clause "New" or "Revised" License
46 stars 2 forks source link

Extra space added after "throw" keyword #78

Open driade opened 2 months ago

driade commented 2 months ago
$response = Http::retry(3, 100, throw: false)->post(/* ... */);

is formatted as

$response = Http::retry(3, 100, throw : false)->post(/* ... */);