| Conditions | 2 |
| Paths | 2 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| 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
$myVarassignment in line 1 and the$higherassignment in line 2 are dead. The first because$myVaris never used and the second because$higheris always overwritten for every possible time line.