Neos\Fusion\Core\Parser::getNextTypoScriptLine PHP Метод

getNextTypoScriptLine() защищенный Метод

Get the next, unparsed line of TypoScript from this->currentSourceCodeLines and increase the pointer
protected getNextTypoScriptLine ( ) : string
Результат string next line of typoscript to parse
    protected function getNextTypoScriptLine()
    {
        $typoScriptLine = current($this->currentSourceCodeLines);
        next($this->currentSourceCodeLines);
        $this->currentLineNumber++;
        return $typoScriptLine;
    }