mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 07:35:23 +08:00
14 lines
No EOL
264 B
PHP
14 lines
No EOL
264 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[0] = [1,2,3];
|
|
|
|
$yaml[1] = $o;
|
|
|
|
return $yaml; |