private function Parser::isNextLineIndented in Translation template extractor 7.2
Same name and namespace in other branches
- 6.3 vendor/Symfony/Component/Yaml/Parser.php \Symfony\Component\Yaml\Parser::isNextLineIndented()
- 7.3 vendor/Symfony/Component/Yaml/Parser.php \Symfony\Component\Yaml\Parser::isNextLineIndented()
Returns true if the next line is indented.
Return value
Boolean Returns true if the next line is indented, false otherwise
1 call to Parser::isNextLineIndented()
- Parser::parse in vendor/
Symfony/ Component/ Yaml/ Parser.php - Parses a YAML string to a PHP value.
File
- vendor/
Symfony/ Component/ Yaml/ Parser.php, line 494
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;
}