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 passing an anonymous function to another function (eg, array_map()), and putting both the called arguments on new lines, Generic.WhiteSpace.ScopeIndent identifies the arguments and correctly allows the following:
array_map(
function ( $item ) {
echo$item;
},
$some_array
);
However, when using the static keyword on the anonymous function, as in:
2 | ERROR | [x] Line indented incorrectly; expected 0 tabs, found 1 (Generic.WhiteSpace.ScopeIndent.IncorrectExact)
The text was updated successfully, but these errors were encountered:
hews
changed the title
Generic.WhiteSpace.ScopeIndent misses new scope on multi-line function call with static anonymous function argument
Generic.WhiteSpace.ScopeIndent triggers error on multi-line function call with static anonymous function as an argument
Nov 25, 2017
gsherwood
changed the title
Generic.WhiteSpace.ScopeIndent triggers error on multi-line function call with static anonymous function as an argument
Generic.WhiteSpace.ScopeIndent error on multi-line function call with static closure argument
Nov 28, 2017
Error was caused by the sniff enforcing exact indent rules for method prefixes, but didn't ignore this for closures. Now it does, and the error is resolved.
When passing an anonymous function to another function (eg,
array_map()
), and putting both the called arguments on new lines,Generic.WhiteSpace.ScopeIndent
identifies the arguments and correctly allows the following:However, when using the
static
keyword on the anonymous function, as in:The following error is triggered:
The text was updated successfully, but these errors were encountered: