Conditions | 2 |
Paths | 2 |
Total Lines | 16 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public function map($internalData) |
||
30 | { |
||
31 | $externalData = ['items' => []]; |
||
32 | |||
33 | foreach ($internalData->getItemCollection() as $item) { |
||
34 | $externalData['items'][] = [ |
||
35 | 'sku' => $item->getSku(), |
||
36 | 'price' => $item->getPrice(), |
||
37 | 'special_price' => $item->getSpecialPrice(), |
||
38 | 'specialFromDate' => $item->getSpecialFromDate(), |
||
39 | 'specialToDate' => $item->getSpecialToDate() |
||
40 | ]; |
||
41 | } |
||
42 | |||
43 | return $externalData; |
||
44 | } |
||
45 | } |
||
46 |
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.