Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-06-29 19:39:06 +0300
committerOlivier Paroz <github@oparoz.com>2015-06-29 19:39:06 +0300
commit6e982392a5b8a065114aa2d4bc7aed0403bed242 (patch)
tree48dc56b136f1661af674cdc2202452aa4e66c650 /vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml
parent8a8baf42ec3205991b23b2a720977faf57603936 (diff)
Update composer
Diffstat (limited to 'vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml')
-rw-r--r--vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml82
1 files changed, 0 insertions, 82 deletions
diff --git a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml b/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml
deleted file mode 100644
index 0c96108e..00000000
--- a/vendor/symfony/yaml/Symfony/Component/Yaml/Tests/Fixtures/unindentedCollections.yml
+++ /dev/null
@@ -1,82 +0,0 @@
---- %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')))