Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
16 | public static function postAutoloadDump(Event $event) |
||
17 | { |
||
18 | $vendorDir = $event->getComposer()->getConfig()->get('vendor-dir'); |
||
19 | require $vendorDir . '/autoload.php'; |
||
20 | |||
21 | mkdir($vendorDir.'/basir', 0700); |
||
22 | mkdir($vendorDir.'/../test', 0700); |
||
23 | |||
24 | // some_function_from_an_autoloaded_file(); |
||
25 | } |
||
26 | |||
40 |
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.