Conditions | 4 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function __construct( array $profile) |
||
9 | { |
||
10 | assert(!empty($profile['model']) && class_exists('\BOTK\Model\\'.$profile['model'])); |
||
11 | assert(isset($profile['datamapper']) && is_callable($profile['datamapper'])); |
||
12 | assert(isset($profile['options']) && is_array($profile['options'])); |
||
13 | $this->profile = $profile; |
||
14 | } |
||
15 | |||
26 | } |
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.