Searched refs:PARSE_OBJECT_FOR_MAP (Results 1 – 11 of 11) sorted by relevance
/plugin/findologicxmlexport/vendor/symfony/yaml/ |
H A D | Yaml.php | 28 const PARSE_OBJECT_FOR_MAP = 8; define in Symfony\\Component\\Yaml\\Yaml
|
H A D | Parser.php | 250 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $refValue instanceof \stdClass) { 267 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsed instanceof \stdClass) { 280 … if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsedItem instanceof \stdClass) { 327 … if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $value instanceof \stdClass) { 432 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && !\is_object($data) && 'mapping' === $context) {
|
H A D | CHANGELOG.md | 145 …"cat" }', Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE | Yaml::PARSE_OBJECT | Yaml::PARSE_OBJECT_FOR_MAP);
|
H A D | Inline.php | 46 self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
|
/plugin/combo/vendor/symfony/yaml/ |
H A D | Yaml.php | 28 public const PARSE_OBJECT_FOR_MAP = 8; define in Symfony\\Component\\Yaml\\Yaml
|
H A D | Parser.php | 259 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $refValue instanceof \stdClass) { 276 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsed instanceof \stdClass) { 289 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $parsedItem instanceof \stdClass) { 336 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && $value instanceof \stdClass) { 505 if (Yaml::PARSE_OBJECT_FOR_MAP & $flags && 'mapping' === $context && !\is_object($data)) {
|
H A D | CHANGELOG.md | 198 Yaml::parse('{ "foo": "bar", "fiz": "cat" }', Yaml::PARSE_EXCEPTION_ON_INVALID_TYPE | Yaml::PARSE_OBJECT | Yaml::PARSE_OBJECT_FOR_MAP);
|
H A D | Inline.php | 41 self::$objectForMap = (bool) (Yaml::PARSE_OBJECT_FOR_MAP & $flags);
|
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
H A D | InlineTest.php | 38 public function testParseWithMapObjects($yaml, $value, $flags = Yaml::PARSE_OBJECT_FOR_MAP) 432 …', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12], Yaml::PARSE_OBJECT_FOR_MAP], 433 …', 'bar' => 'foo', 'false' => false, 'null' => null, 'integer' => 12], Yaml::PARSE_OBJECT_FOR_MAP],
|
H A D | ParserTest.php | 447 $flags = Yaml::PARSE_OBJECT_FOR_MAP; 1914 $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP)); 2011 $this->assertEquals($expected, $this->parser->parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP));
|
H A D | DumperTest.php | 256 $this->assertEquals($expected, Yaml::parse($yaml, Yaml::PARSE_OBJECT_FOR_MAP));
|