DependencyInjection/Compiler/TagConverterCompilerPass.php
Avoid unused local variables such as '$tags'. Open
Open
foreach ($taggedServices as $id => $tags) {
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}