| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | --- %YAML:1.0test: Empty Sequencebrief: >    You can represent the empty sequence    with an empty inline sequence.yaml: |    empty: []php: |    ['empty' => []]---test: Empty Mappingbrief: >    You can represent the empty mapping    with an empty inline mapping.yaml: |    empty: {}php: |    ['empty' => []]---test: Empty Sequence as Entire Documentyaml: |    []php: |    []---test: Empty Mapping as Entire Documentyaml: |    {}php: |    []---test: Null as Documentyaml: |    ~php: |    null---test: Empty Stringbrief: >    You can represent an empty string    with a pair of quotes.yaml: |    ''php: |    ''
 |