freescout-calendar-module/vendor/dallgoot/yaml/tests/cases/dumping/compact_object.php
2024-09-10 16:29:40 +02:00

17 lines
No EOL
206 B
PHP

<?php
use Dallgoot\Yaml\Types\YamlObject;
use Dallgoot\Yaml\Types\Compact;
$yaml = new YamlObject(0);
$o = new \stdClass;
$o->key1 = 'a';
$o->key2 = 'b';
$yaml->key1 = new Compact($o);
return $yaml;