private function Parser::getRealCurrentLineNb in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/yaml/Parser.php \Symfony\Component\Yaml\Parser::getRealCurrentLineNb()
Returns the current line number (takes the offset into account).
Return value
int The current line number
3 calls to Parser::getRealCurrentLineNb()
- Parser::getNextEmbedBlock in vendor/
symfony/ yaml/ Parser.php - Returns the next embed block of YAML.
- Parser::parse in vendor/
symfony/ yaml/ Parser.php - Parses a YAML string to a PHP value.
- Parser::parseValue in vendor/
symfony/ yaml/ Parser.php - Parses a YAML value.
File
- vendor/
symfony/ yaml/ Parser.php, line 314
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
private function getRealCurrentLineNb() {
return $this->currentLineNb + $this->offset;
}