Cassandra\Integration::isDebug PHP Method

isDebug() public static method

Determine if the debug argument was used when starting PHPUnit.
public static isDebug ( ) : boolean
return boolean True if debug argument was used; false otherwise
    public static function isDebug()
    {
        return in_array("--debug", $_SERVER['argv']);
    }