YamlParser::isCurrentLineEmpty PHP Method

isCurrentLineEmpty() protected method

Returns true if the current line is blank or if it is a comment line.
protected isCurrentLineEmpty ( ) : boolean
return boolean Returns true if the current line is empty or if it is a comment line, false otherwise
    protected function isCurrentLineEmpty()
    {
        return $this->isCurrentLineBlank() || $this->isCurrentLineComment();
    }