drupal-civicrm/vendor/symfony/yaml/Tests/Fixtures/legacyBooleanMappingKeys.yml

24 lines
313 B
YAML
Raw Normal View History

2018-01-14 15:10:16 +02:00
--- %YAML:1.0
test: Miscellaneous
spec: 2.21
yaml: |
true: true
false: false
php: |
array(
1 => true,
0 => false,
)
---
test: Boolean
yaml: |
false: used as key
logical: true
answer: false
php: |
array(
false => 'used as key',
'logical' => true,
'answer' => false
)