tchule
tchule
Yes, looks good to me.
On a slightly different but still related subject, I've updated an old task on the google code site : https://code.google.com/p/phpcheckstyle/issues/detail?id=1 I've started to try to implement something but I'm not...
Personnaly I prefer the camelCase version, klike you proposed "unusedVariables" and "unusedFunctionParameters". But I'm OK with both.
Yes, this would be perfect.
Ya, it sound strange. Will have to detect the fact that we are in a closure.
Yes, I've already had some false positives with this rule. The analysis done is too simple. This is where a real AST could help a lot.
I confirm that currently PHPCheckstyle use token_get_all() with some modifications to take into account spaces, tabs and carriage return and to count the line returns in the inlined HTML. I've...
Problem occurs because the closing parenthese after `debug')` is considered as the end of the IF, nextValidToken is then `===` instead of `{` Should count the opening and closing parentheses.
Humm, ok, we already count the opening/closing. Problem is in "_processParenthesisClose()", this part of the code existed before we used a stack. We use flags to know if we are...
Hello, It's probably not clearly documented, but yes the "--exclude" il relative to the "--src" path. So the correct way to exclure "welcome_message" is as you guessed : `php /path/to/run.php...