| Conditions | 3 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | 2 | protected function renderEachCell($originalData, $restructuredData, $configurationData, $options) |
|
| 20 | { |
||
| 21 | 2 | foreach ($restructuredData as $id => $row) { |
|
| 22 | 2 | foreach ($row as $key => $cellData) { |
|
| 23 | 2 | $restructuredData[$id][$key] = $originalData->renderCell($key, $cellData, $configurationData, $options); |
|
| 24 | 2 | } |
|
| 25 | 2 | } |
|
| 26 | 2 | return $restructuredData; |
|
| 27 | } |
||
| 28 | } |
||
| 29 |