mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-17 04:08:37 +08:00
15 lines
No EOL
213 B
PHP
15 lines
No EOL
213 B
PHP
<?php
|
|
use Dallgoot\Yaml\Types\YamlObject;
|
|
|
|
$yaml = new YamlObject(0);
|
|
$yaml1 = new YamlObject(0);
|
|
$yaml2 = new YamlObject(0);
|
|
|
|
|
|
$yaml[0] = [1,2,3];
|
|
|
|
$yaml1->a = 1;
|
|
|
|
$yaml2->b = 2;
|
|
|
|
return [$yaml, $yaml1, $yaml2]; |