Skip to content

Commit

Permalink
minor #21678 [Yaml] fix DUMP_EMPTY_ARRAY_AS_SEQUENCE flag value (xabbuh)
Browse files Browse the repository at this point in the history
This PR was merged into the 3.3-dev branch.

Discussion
----------

[Yaml] fix DUMP_EMPTY_ARRAY_AS_SEQUENCE flag value

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Commits
-------

3953d76 fix DUMP_EMPTY_ARRAY_AS_SEQUENCE flag value
  • Loading branch information
fabpot committed Feb 20, 2017
2 parents 61d5353 + 3953d76 commit eb678a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Yaml/Yaml.php
Expand Up @@ -29,7 +29,7 @@ class Yaml
const DUMP_OBJECT_AS_MAP = 64;
const DUMP_MULTI_LINE_LITERAL_BLOCK = 128;
const PARSE_CONSTANT = 256;
const DUMP_EMPTY_ARRAY_AS_SEQUENCE = 512;
const DUMP_EMPTY_ARRAY_AS_SEQUENCE = 1024;

/**
* @experimental in version 3.3
Expand Down

0 comments on commit eb678a0

Please sign in to comment.