Server IP : 192.158.238.246 / Your IP : 18.191.103.248 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/7779/cwd/plugins/wp-heyloyalty/vendor/symfony/yaml/Tests/Fixtures/ |
Upload File : |
--- %YAML:1.0 test: Unindented collection brief: > Unindented collection yaml: | collection: - item1 - item2 - item3 php: | array('collection' => array('item1', 'item2', 'item3')) --- test: Nested unindented collection (two levels) brief: > Nested unindented collection yaml: | collection: key: - a - b - c php: | array('collection' => array('key' => array('a', 'b', 'c'))) --- test: Nested unindented collection (three levels) brief: > Nested unindented collection yaml: | collection: key: subkey: - one - two - three php: | array('collection' => array('key' => array('subkey' => array('one', 'two', 'three')))) --- test: Key/value after unindented collection (1) brief: > Key/value after unindented collection (1) yaml: | collection: key: - a - b - c foo: bar php: | array('collection' => array('key' => array('a', 'b', 'c')), 'foo' => 'bar') --- test: Key/value after unindented collection (at the same level) brief: > Key/value after unindented collection yaml: | collection: key: - a - b - c foo: bar php: | array('collection' => array('key' => array('a', 'b', 'c'), 'foo' => 'bar')) --- test: Shortcut Key after unindented collection brief: > Key/value after unindented collection yaml: | collection: - key: foo foo: bar php: | array('collection' => array(array('key' => 'foo', 'foo' => 'bar'))) --- test: Shortcut Key after unindented collection with custom spaces brief: > Key/value after unindented collection yaml: | collection: - key: foo foo: bar php: | array('collection' => array(array('key' => 'foo', 'foo' => 'bar')))