Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 10 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | 1 | public function map($internalData) |
|
34 | { |
||
35 | 1 | $externalData = ['items' => []]; |
|
36 | 1 | foreach ($internalData as $item) { |
|
37 | 1 | $externalData['items'][] = [ |
|
38 | 1 | 'url' => $item->getUrl(), |
|
39 | 1 | 'position' => $item->getPosition(), |
|
40 | 1 | 'processStatus' => $item->getProcessStatus() |
|
41 | 1 | ]; |
|
42 | 1 | } |
|
43 | |||
44 | 1 | return $externalData; |
|
45 | } |
||
46 | } |
||
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.