Home
last modified time | relevance | path

Searched refs:PARSE_CUSTOM_TAGS (Results 1 – 12 of 12) sorted by last modified time

/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md88 Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
H A DInline.php754 if ('' === $tag || Yaml::PARSE_CUSTOM_TAGS & $flags) {
758 throw new ParseException(sprintf('Tags support is not enabled. Enable the "Yaml::PARSE_CUSTOM_TAGS" flag to use "!%s".', $tag), self::$parsedLineNumber + 1, $value, self::$parsedFilename);
H A DParser.php1143 if (Yaml::PARSE_CUSTOM_TAGS & $flags) {
1147 throw new ParseException(sprintf('Tags support is not enabled. You must use the flag "Yaml::PARSE_CUSTOM_TAGS" to use "%s".', $matches['tag']), $this->getRealCurrentLineNb() + 1, $value, $this->filename);
H A DYaml.php34 public const PARSE_CUSTOM_TAGS = 512; define in Symfony\\Component\\Yaml\\Yaml
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php108 $flags = $flags ? Yaml::PARSE_CUSTOM_TAGS : 0;
189 if (false !== strpos($info['message'], 'PARSE_CUSTOM_TAGS')) {
218 if (isset($v['message']) && false !== strpos($v['message'], 'PARSE_CUSTOM_TAGS')) {
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php88 $flags = $input->getOption('parse-tags') ? Yaml::PARSE_CUSTOM_TAGS : 0;
/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DInline.php685 if ('' === $tag || Yaml::PARSE_CUSTOM_TAGS & $flags) {
H A DYaml.php34 const PARSE_CUSTOM_TAGS = 512; define in Symfony\\Component\\Yaml\\Yaml
H A DCHANGELOG.md35 Yaml::parse('!foo bar', Yaml::PARSE_CUSTOM_TAGS);
H A DParser.php1069 if (Yaml::PARSE_CUSTOM_TAGS & $flags) {
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DParserTest.php1637 …dValue('foo', ['foo' => 'bar']), $this->parser->parse('!foo {foo: bar}', Yaml::PARSE_CUSTOM_TAGS));
1645 $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_CUSTOM_TAGS));
2033 $this->parser->parse($yaml, Yaml::PARSE_CUSTOM_TAGS);
H A DInlineTest.php718 $value = Inline::parse('[!foo]', Yaml::PARSE_CUSTOM_TAGS);
727 $value = Inline::parse('[!foo ""]', Yaml::PARSE_CUSTOM_TAGS);
736 $value = Inline::parse('{foo: !bar}', Yaml::PARSE_CUSTOM_TAGS);
745 $value = Inline::parse('{foo: !bar ""}', Yaml::PARSE_CUSTOM_TAGS);