Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | private static function get_variable_text_with_title($data, $title) { |
||
21 | |||
22 | $result = str_repeat('_', strlen($title)) . "_\n"; |
||
23 | $result .= $title . " |\n"; |
||
24 | $result .= "============================================================================\n"; |
||
25 | $result .= self::get_variable_text($data); |
||
26 | $result .= "\n============================================================================"; |
||
27 | |||
28 | return $result; |
||
29 | } |
||
60 | } |