You are here

private function Parser::isStringUnIndentedCollectionItem in Lockr 7.3

Returns true if the string is un-indented collection item.

Return value

bool Returns true if the string is un-indented collection item, false otherwise

2 calls to Parser::isStringUnIndentedCollectionItem()
Parser::getNextEmbedBlock in vendor/symfony/yaml/Parser.php
Returns the next embed block of YAML.
Parser::isNextLineUnIndentedCollection in vendor/symfony/yaml/Parser.php
Returns true if the next line starts unindented collection.

File

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

Class

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

Namespace

Symfony\Component\Yaml

Code

private function isStringUnIndentedCollectionItem() {
  return '-' === rtrim($this->currentLine) || 0 === strpos($this->currentLine, '- ');
}