1 | <?php |
||
5 | trait WaterfallTrait |
||
6 | { |
||
7 | /** |
||
8 | * Call callback one |
||
9 | * @param \Closure $fn |
||
10 | * @return \Closure |
||
11 | */ |
||
12 | private function callOnce ($fn) |
||
20 | |||
21 | /** |
||
22 | * Run tasks in series |
||
23 | * @param \Closure[] $tasks |
||
24 | * @param array $args |
||
25 | * @return void |
||
26 | */ |
||
27 | private function waterfall (array $tasks, array $args) |
||
45 | } |
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.