Phan\Debug::print PHP Method

print() public static method

Print a thing with the given indent level
public static print ( string $message, integer $indent )
$message string
$indent integer
    public static function print(string $message, int $indent = 0)
    {
        print str_repeat("\t", $indent);
        print $message . "\n";
    }