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
Since version 6 I have Undefined index: parenthesis_closer errors due to the fact that I use $this->fn in some classes. Same error with $foo->fn.
Minimal example:
<?phpclass Test {
publicfunctionfoo() {
$this->fn = 'a';
}
}
gives
1 | ERROR | An error occurred during processing; checking has been
| | aborted. The error message was: Undefined index:
| | parenthesis_closer in
| | /var/www/api/vendor/slevomat/coding-standard/SlevomatCodingStandard/Helpers/FunctionHelper.php
| | on line 218
The text was updated successfully, but these errors were encountered:
Since version 6 I have
Undefined index: parenthesis_closer
errors due to the fact that I use$this->fn
in some classes. Same error with$foo->fn
.Minimal example:
gives
The text was updated successfully, but these errors were encountered: