mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 10:23:07 +08:00
15 lines
No EOL
273 B
PHP
15 lines
No EOL
273 B
PHP
<?php
|
|
|
|
use Dallgoot\Yaml\Types\YamlObject;
|
|
|
|
$yaml = new YamlObject(0);
|
|
|
|
$o = new \stdClass;
|
|
|
|
$o->memberOfO = 'some really really really really really really really really really very long text as a simple string';
|
|
|
|
$yaml->propA = [1,2,3];
|
|
|
|
$yaml->propB = $o;
|
|
|
|
return $yaml; |