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
Depending on how I indent an array, I have a false positive on the next line:
<?php class foo { public function get() { $foo = ['b' => 'c', 'd' => [ ['e' => 'f'] ]]; return 42; } }
In this one, I have a Line indented incorrectly; expected at least 16 spaces, found 8 [Generic.WhiteSpace.ScopeIndent.Incorrect] on the return keyword.
But this one pass:
<?php class foo { public function get() { $foo = ['b' => 'c', 'd' => [ ['e' => 'f']]]; return 42; } }