Is there any way to highlight unused php-variables in vscode?
<?php
$foo = 'a';
$bar = 'b'; // I want the IDE mark this somehow
$foo = 'c';
?>
I have "editor.showUnused": true
in the config file. Also, I tried a couple intellisense
extensions, but it didn't help.