Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | protected function setUp() |
||
27 | { |
||
28 | $application = new Application([ |
||
|
|||
29 | 'id' => 'mock', |
||
30 | 'basePath' => dirname(dirname(__DIR__)), |
||
31 | 'modules' => [ |
||
32 | 'language' => [ |
||
33 | 'class' => Module::class, |
||
34 | ], |
||
35 | ], |
||
36 | 'components' => [ |
||
37 | 'urlManager' => [ |
||
38 | 'enablePrettyUrl' => true, |
||
39 | 'showScriptName' => false, |
||
40 | ], |
||
41 | ], |
||
42 | ]); |
||
43 | $this->object = Module::getInstance(); |
||
44 | } |
||
45 | |||
57 |
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.