Skip to content

Commit d794f2f

Browse files
committed
minor symfony#18806 [YAML] Fixed upgrade file (HeahDude)
This PR was merged into the 3.1 branch. Discussion ---------- [YAML] Fixed upgrade file | Q | A | ------------- | --- | Branch? | 3.1 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | ~ | License | MIT | Doc PR | ~ Commits ------- 6bcb74d [YAML] fixed "dump" signature in upgrade file
2 parents fce062a + 6bcb74d commit d794f2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UPGRADE-3.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Yaml
202202
After:
203203

204204
```php
205-
Yaml::dump(array('foo' => new A(), 'bar' => 1), 0, 0, false, Yaml::DUMP_OBJECT);
205+
Yaml::dump(array('foo' => new A(), 'bar' => 1), 0, 0, Yaml::DUMP_OBJECT);
206206
```
207207

208208
* The `!!php/object` tag to indicate dumped PHP objects has been deprecated

0 commit comments

Comments
 (0)