You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When formatting the following line : class buildCommand extends Command
The output is : class buildCommandextends Command
Expected output, same as original string
The formatter removes the space between the class name and the keyword 'extends'
using the following to format the code :
$formatter = new \gossi\formatter\Formatter();
$niceCode = $formatter->format($uglyCode);
echo $niceCode;
Thanks for an otherwise great script :)
The text was updated successfully, but these errors were encountered:
When formatting the following line :
class buildCommand extends Command
The output is :
class buildCommandextends Command
Expected output, same as original string
The formatter removes the space between the class name and the keyword 'extends'
using the following to format the code :
Thanks for an otherwise great script :)
The text was updated successfully, but these errors were encountered: