Home
last modified time | relevance | path

Searched refs:getNextEmbedBlock (Results 1 – 1 of 1) sorted by relevance

/template/strap/vendor/symfony/yaml/
H A DParser.php184 $sequenceYaml .= "\n".$this->getNextEmbedBlock($sequenceIndentation, true);
188 …ata[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true) …
192 … $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
205 …$block .= "\n".$this->getNextEmbedBlock($this->getCurrentLineIndentation() + \strlen($values['lead…
272 $value = $this->getNextEmbedBlock();
332 … $value = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(), $flags);
580 private function getNextEmbedBlock(int $indentation = null, bool $inSequence = false): string function in Symfony\\Component\\Yaml\\Parser