Skip to content

Commit eb678a0

Browse files
committed
minor #21678 [Yaml] fix DUMP_EMPTY_ARRAY_AS_SEQUENCE flag value (xabbuh)
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
2 parents 61d5353 + 3953d76 commit eb678a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Yaml/Yaml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Yaml
2929
const DUMP_OBJECT_AS_MAP = 64;
3030
const DUMP_MULTI_LINE_LITERAL_BLOCK = 128;
3131
const PARSE_CONSTANT = 256;
32-
const DUMP_EMPTY_ARRAY_AS_SEQUENCE = 512;
32+
const DUMP_EMPTY_ARRAY_AS_SEQUENCE = 1024;
3333

3434
/**
3535
* @experimental in version 3.3

0 commit comments

Comments
 (0)