Searched refs:DUMP_OBJECT_AS_MAP (Results 1 – 9 of 9) sorted by relevance
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/ |
H A D | DumperTest.php | 254 $yaml = $this->dumper->dump($object, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); 294 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); 313 $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); 325 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); 339 …$this->assertSame('{ }', $this->dumper->dump(new \ArrayObject(), 2, 0, Yaml::DUMP_OBJECT_AS_MAP)); 344 … $this->assertSame('{ }', $this->dumper->dump(new \stdClass(), 2, 0, Yaml::DUMP_OBJECT_AS_MAP)); 362 $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP);
|
/plugin/findologicxmlexport/vendor/symfony/yaml/ |
H A D | Dumper.php | 55 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \std… 80 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \std…
|
H A D | Yaml.php | 31 const DUMP_OBJECT_AS_MAP = 64; define in Symfony\\Component\\Yaml\\Yaml
|
H A D | CHANGELOG.md | 122 through the `Yaml::DUMP_OBJECT_AS_MAP` flag.
|
H A D | Inline.php | 144 …if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \stdClass || $value instanceof \ArrayO…
|
/plugin/combo/vendor/symfony/yaml/ |
H A D | Dumper.php | 55 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \stdClass)) { 125 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \stdClass)) {
|
H A D | Yaml.php | 31 public const DUMP_OBJECT_AS_MAP = 64; define in Symfony\\Component\\Yaml\\Yaml
|
H A D | CHANGELOG.md | 175 through the `Yaml::DUMP_OBJECT_AS_MAP` flag.
|
H A D | Inline.php | 139 if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \stdClass || $value instanceof \ArrayObject)) {
|