raoul2000\workflow\source\file\GraphmlLoader::isBlank PHP Method

isBlank() private method

private isBlank ( string $str ) : boolean
$str string
return boolean TRUE if the string passed as argument is null, empty, or made of space character(s)
    private function isBlank($str)
    {
        return !isset($str) || strlen(trim($str)) == 0;
    }