Conditions | 2 |
Paths | 2 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function analyse() |
||
19 | { |
||
20 | $absoluteFilePath = $this->getTargetPath(); |
||
|
|||
21 | $fileNameWithExtension = $this->target->getRelativePathname(); |
||
22 | |||
23 | $class = '\\Finder\\Spider\\Extensions\\'.ucfirst($this->getTarget()->getExtension()); |
||
24 | DebugHelper::info('Analisando Arquivo: '.$this->getTargetPath()); |
||
25 | if (class_exists($class)) { |
||
26 | $analyse = new $class($this->getTarget(), $this->getMetric()); |
||
27 | |||
28 | } |
||
29 | |||
30 | // dd($absoluteFilePath, $fileNameWithExtension, $this->target); |
||
31 | // ... |
||
32 | } |
||
33 | } |
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.