private function Parser::isNextLineUnIndentedCollection in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Parser.php \Symfony\Component\Yaml\Parser::isNextLineUnIndentedCollection()
Returns true if the next line starts unindented collection.
Return value
bool Returns true if the next line starts unindented collection, false otherwise
1 call to Parser::isNextLineUnIndentedCollection()
- Parser::parse in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php - Parses a YAML string to a PHP value.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php, line 661
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
private function isNextLineUnIndentedCollection() {
$currentIndentation = $this
->getCurrentLineIndentation();
$notEOF = $this
->moveToNextLine();
while ($notEOF && $this
->isCurrentLineEmpty()) {
$notEOF = $this
->moveToNextLine();
}
if (false === $notEOF) {
return false;
}
$ret = false;
if ($this
->getCurrentLineIndentation() == $currentIndentation && $this
->isStringUnIndentedCollectionItem($this->currentLine)) {
$ret = true;
}
$this
->moveToPreviousLine();
return $ret;
}