Completed
Push — master ( 0a7e9d...70f968 )
by Amr
01:48
created

utils.php ➔ print_result()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 4
nc 1
nop 1
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
// print the result (formatted), for debugging purposes
4
function print_result($obj) {
5
    echo "<pre>";
6
    print_r($obj);
7
    echo "</pre>";
8
}
9
10
?>