private function Parser::getRealCurrentLineNb

Returns the current line number (takes the offset into account).

Return value

integer The current line number

3 calls to Parser::getRealCurrentLineNb()
Parser::getNextEmbedBlock in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php
Returns the next embed block of YAML.
Parser::parse in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php
Parses a YAML string to a PHP value.
Parser::parseValue in drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php
Parses a YAML value.

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php, line 258

Class

Parser
Parser parses YAML strings to convert them to PHP arrays.

Namespace

Symfony\Component\Yaml

Code

private function getRealCurrentLineNb() {
  return $this->currentLineNb + $this->offset;
}