YamlParser::isCurrentLineBlank PHP Method

isCurrentLineBlank() protected method

Returns true if the current line is blank.
protected isCurrentLineBlank ( ) : boolean
return boolean Returns true if the current line is blank, false otherwise
    protected function isCurrentLineBlank()
    {
        return '' == trim($this->currentLine, ' ');
    }