private function Parser::moveToPreviousLine in Service Container 7.2
Same name and namespace in other branches
- 7 modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Parser.php \Symfony\Component\Yaml\Parser::moveToPreviousLine()
 
Moves the parser to the previous line.
4 calls to Parser::moveToPreviousLine()
- Parser::getNextEmbedBlock in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php  - Returns the next embed block of YAML.
 - Parser::isNextLineIndented in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php  - Returns true if the next line is indented.
 - Parser::isNextLineUnIndentedCollection in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php  - Returns true if the next line starts unindented collection.
 - Parser::parseFoldedScalar in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php  - Parses a folded scalar.
 
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php, line 427  
Class
- Parser
 - Parser parses YAML strings to convert them to PHP arrays.
 
Namespace
Symfony\Component\YamlCode
private function moveToPreviousLine() {
  $this->currentLine = $this->lines[--$this->currentLineNb];
}