mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 10:23:07 +08:00
17 lines
No EOL
206 B
PHP
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; |