We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't move comments to the other side of empty statements?
Relax enforcement of class attributes on their own line when the class is a one-line and/or anonymous class?
Expand this
<?php [ $foo,,, $bar, $baz, ] = $data;
to this?
<?php [ $foo, , , $bar, $baz, ] = $data;
Improve tag indentation in this scenario:
<?php function test() { ?> Test <?php }
Suppress .0 in floats with an exponent, e.g. 3.0e5?
.0
3.0e5
Remove leading space from & in fn &() => null for consistency with fn() => null
&
fn &() => null
fn() => null
Check formatting of declare blocks without braces
declare
Review switch indentation? e.g.
<?php switch ($a) { case 0: break; // Deindent this after `break`/`return`/`throw`? case 1: default: break; }
Handle leading semicolons in switches
<?php switch ($a) { ; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Don't move comments to the other side of empty statements?
Relax enforcement of class attributes on their own line when the class is a one-line and/or anonymous class?
Expand this
to this?
Improve tag indentation in this scenario:
Suppress.0
in floats with an exponent, e.g.3.0e5
?Remove leading space from
&
infn &() => null
for consistency withfn() => null
Check formatting of
declare
blocks without bracesReview switch indentation? e.g.
Handle leading semicolons in switches
The text was updated successfully, but these errors were encountered: