phpcs-variable-analysis
phpcs-variable-analysis copied to clipboard
Add reassigned variable warnings
Work-in-progress. I'm not actually sure how to do this because the scoping is quite difficult. Assistance would be greatly appreciated!
Fixes #101
Could we detect if someone touches function/method parameters?
function foo(string $boo): void
{
$boo = $boo . 'suffix';
}