Conditions | 3 |
Paths | 4 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5402 | public static function showSupport(bool $useEcho = true) |
||
5403 | { |
||
5404 | // init |
||
5405 | 2 | $html = ''; |
|
5406 | |||
5407 | 2 | $html .= '<pre>'; |
|
5408 | 2 | foreach (self::$SUPPORT as $key => &$value) { |
|
5409 | 2 | $html .= $key . ' - ' . \print_r($value, true) . "\n<br>"; |
|
5410 | } |
||
5411 | 2 | $html .= '</pre>'; |
|
5412 | |||
5413 | 2 | if ($useEcho) { |
|
5414 | 1 | echo $html; |
|
5415 | } |
||
5416 | |||
5417 | 2 | return $html; |
|
5418 | } |
||
13694 |