Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
85 | 33 | private function _renderRow(Model $rowModel, array $columns) : string |
|
86 | { |
||
87 | 33 | $html = '<tr>'; |
|
88 | /** @var Column $column */ |
||
89 | 33 | foreach ($columns as $column) |
|
90 | { |
||
91 | 33 | $html .= '<td>' . $column->getFormattedValue($rowModel) . '</td>'; |
|
92 | } |
||
93 | 33 | $html .= '</tr>'; |
|
94 | |||
95 | 33 | return $html; |
|
96 | } |
||
97 | } |
||
98 |