You are here

private function Parser::isNextLineUnIndentedCollection in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/symfony/yaml/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::doParse in vendor/symfony/yaml/Parser.php

File

vendor/symfony/yaml/Parser.php, line 771

Class

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

Namespace

Symfony\Component\Yaml

Code

private function isNextLineUnIndentedCollection() {
  $currentIndentation = $this
    ->getCurrentLineIndentation();
  $notEOF = $this
    ->moveToNextLine();
  while ($notEOF && $this
    ->isCurrentLineEmpty()) {
    $notEOF = $this
      ->moveToNextLine();
  }
  if (false === $notEOF) {
    return false;
  }
  $ret = $this
    ->getCurrentLineIndentation() === $currentIndentation && $this
    ->isStringUnIndentedCollectionItem();
  $this
    ->moveToPreviousLine();
  return $ret;
}