debug.php ➔ dump_sql()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
function kill() {
4
  return call_user_func_array("\\PHP\\Utils::kill", func_get_args());
5
}
6
7
function dump_sql($sSql) {
8
  return \PHP\Utils::dump_sql($sSql);
9
}
10
11
function kill_sql($sSql) {
12
13
  \PHP\Utils::dump_sql($sSql);
14
  die("FIM SQL");
15
}
16
17
function debug_array(&$array) {
18
  return new \PHP\ArrayDebugger($array);
19
}
20