Conditions | 6 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 42 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
65 | function w(): never |
||
1 ignored issue
–
show
|
|||
66 | { |
||
67 | $isHtml = (PHP_SAPI !== 'cli'); |
||
68 | echo "\n_________________________________________________________________________________________________________________________" . ($isHtml ? '</br>' : '') . "\n"; |
||
69 | var_dump(func_get_args()); |
||
70 | echo "\n" . ($isHtml ? '</br>' : '') . '_________________________________________________________________________________________________________________________' . ($isHtml ? '<pre>' : '') . "\n"; |
||
71 | debug_print_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); |
||
72 | echo '' . ($isHtml ? '</pre>' : '') . '_________________________________________________________________________________________________________________________' . ($isHtml ? '</br>' : '') . "\n"; |
||
73 | exit("script aborted on purpose.\n"); |
||
74 | } |
||
75 |