Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public static function formatSections(array $sections) |
||
15 | { |
||
16 | $sectionsFormatted = []; |
||
17 | |||
18 | foreach ($sections as $k => $v) { |
||
19 | $sectionsFormatted[] = sprintf("%s\n%s\n%s", $k, str_repeat('-', strlen($k)), trim($v)); |
||
20 | } |
||
21 | |||
22 | $text = implode("\n\n", $sectionsFormatted) . "\n"; |
||
23 | |||
24 | return $text; |
||
25 | } |
||
26 | } |
||
27 |