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