Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total  
 
 
 
CRAP
100.00% covered (success)
100.00%
7 / 7
ifthenelse( $a, $b )
100.00% covered (success)
100.00%
1 / 1
0
100.00% covered (success)
100.00%
7 / 7
<?php
function ifthenelse( $a, $b )
{
    if ($a) {
        echo "A HIT\n";
    }
    if ($b) {
        echo "B HIT\n";
    }
}
?>