Skip to content

Commit ccd47b7

Browse files
committed
minor symfony#17712 [TwigBridge] fix default argument value (xabbuh)
This PR was merged into the 3.1-dev branch. Discussion ---------- [TwigBridge] fix default argument value | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | symfony#17705 | License | MIT | Doc PR | When deprecating boolean argument values, the default value must not be `false`. Commits ------- beea61e [TwigBridge] fix default argument value
2 parents 1fc6a54 + beea61e commit ccd47b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/Twig/Extension/YamlExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getFilters()
3131
);
3232
}
3333

34-
public function encode($input, $inline = 0, $dumpObjects = false)
34+
public function encode($input, $inline = 0, $dumpObjects = 0)
3535
{
3636
static $dumper;
3737

0 commit comments

Comments
 (0)