| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | public function render(array $objects = [], array $columns = array()) |
||
| 29 | { |
||
| 30 | $rows = []; |
||
| 31 | |||
| 32 | /** @var Row $row */ |
||
| 33 | $row = GeneralUtility::makeInstance(Row::class, $columns); |
||
| 34 | foreach ($objects as $index => $object) { |
||
| 35 | $rows[] = $row->render($object, $index); |
||
| 36 | } |
||
| 37 | |||
| 38 | return $rows; |
||
| 39 | } |
||
| 40 | } |
||
| 41 |