Completed
Push — master ( aa3a2b...7bbb88 )
by Rafael
02:07
created
src/functions/debug.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 function kill() {
4
-  return call_user_func_array("\\PHP\\Utils::kill", func_get_args());
4
+    return call_user_func_array("\\PHP\\Utils::kill", func_get_args());
5 5
 }
6 6
 
7 7
 function dump_sql($sSql) {
8
-  return \PHP\Utils::dump_sql($sSql);
8
+    return \PHP\Utils::dump_sql($sSql);
9 9
 }
10 10
 
11 11
 function kill_sql($sSql) {
12 12
 
13
-  \PHP\Utils::dump_sql($sSql);
14
-  die("FIM SQL");
13
+    \PHP\Utils::dump_sql($sSql);
14
+    die("FIM SQL");
15 15
 }
16 16
 
17 17
 function debug_array(&$array) {
18
-  return new \PHP\ArrayDebugger($array);
18
+    return new \PHP\ArrayDebugger($array);
19 19
 }
Please login to merge, or discard this patch.