Symfony\Component\Yaml\Parser::isNextLineIndented PHP Method

isNextLineIndented() private method

Returns true if the next line is indented.
private isNextLineIndented ( ) : boolean
return boolean Returns true if the next line is indented, false otherwise
    private function isNextLineIndented()
    {
        $currentIndentation = $this->getCurrentLineIndentation();
        $EOF = !$this->moveToNextLine();
        while (!$EOF && $this->isCurrentLineEmpty()) {
            $EOF = !$this->moveToNextLine();
        }
        if ($EOF) {
            return false;
        }
        $ret = false;
        if ($this->getCurrentLineIndentation() > $currentIndentation) {
            $ret = true;
        }
        $this->moveToPreviousLine();
        return $ret;
    }