Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
44 | 33 | public function renderHeaders(array $headers, array $formatters = []) : string |
|
45 | { |
||
46 | 33 | $html = '<tr>'; |
|
47 | |||
48 | /** @var Header $header */ |
||
49 | 33 | foreach ($headers as $header) |
|
50 | { |
||
51 | 33 | $html .= $header->formatArray($formatters)->print(); |
|
52 | } |
||
53 | 33 | $html .= '</tr>'; |
|
54 | |||
55 | 33 | return $html; |
|
56 | } |
||
57 | |||
98 |