Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | |||
32 | } |
||
33 | |||
34 | private function createContainer() |
||
35 | { |
||
36 | $container = new Container; |
||
37 | $container->delegate(new ReflectionContainer); |
||
38 | $this->setContainer($container); |
||
39 | } |
||
40 | |||
41 | private function loadEnvironment() |
||
42 | { |
||
43 | $environment = new Dotenv(getcwd() . '/../'); |
||
44 | $environment->load(); |
||
47 |
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.