| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 4.0466 |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | 36 | protected function indexRow($offset, $row) |
|
| 21 | { |
||
| 22 | 36 | $id = null; |
|
| 23 | 36 | if ($row instanceof Price) { |
|
| 24 | $id = $row->getId(); |
||
| 25 | 36 | } elseif (is_array($row)) { |
|
| 26 | 36 | $id = isset($row[static::ID]) ? $row[static::ID] : null; |
|
| 27 | } |
||
| 28 | 36 | $this->addToIndex(static::ID, $offset, $id); |
|
| 29 | 36 | } |
|
| 31 |