private function Parser::isNextLineIndented in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/yaml/Parser.php \Symfony\Component\Yaml\Parser::isNextLineIndented()
Returns true if the next line is indented.
Return value
bool Returns true if the next line is indented, false otherwise
1 call to Parser::isNextLineIndented()
- Parser::parse in vendor/
symfony/ yaml/ Parser.php - Parses a YAML string to a PHP value.
File
- vendor/
symfony/ yaml/ Parser.php, line 577
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
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;
}