private function Parser::isStringUnIndentedCollectionItem in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Parser.php \Symfony\Component\Yaml\Parser::isStringUnIndentedCollectionItem()
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 modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php - Returns the next embed block of YAML.
- Parser::isNextLineUnIndentedCollection in modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php - Returns true if the next line starts unindented collection.
File
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ Yaml/ Parser.php, line 693
Class
- Parser
- Parser parses YAML strings to convert them to PHP arrays.
Namespace
Symfony\Component\YamlCode
private function isStringUnIndentedCollectionItem() {
return 0 === strpos($this->currentLine, '- ');
}