You are here

private function Parser::getCurrentLineIndentation in Currency 7.2

Returns the current line indentation.

Return value

int The current line indentation

4 calls to Parser::getCurrentLineIndentation()
Parser::getNextEmbedBlock in currency/vendor/symfony/yaml/Parser.php
Returns the next embed block of YAML.
Parser::isNextLineIndented in currency/vendor/symfony/yaml/Parser.php
Returns true if the next line is indented.
Parser::isNextLineUnIndentedCollection in currency/vendor/symfony/yaml/Parser.php
Returns true if the next line starts unindented collection.
Parser::parse in currency/vendor/symfony/yaml/Parser.php
Parses a YAML string to a PHP value.

File

currency/vendor/symfony/yaml/Parser.php, line 315

Class

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

Namespace

Symfony\Component\Yaml

Code

private function getCurrentLineIndentation() {
  return strlen($this->currentLine) - strlen(ltrim($this->currentLine, ' '));
}