Skip to content

Commit d760c27

Browse files
committed
minor symfony#29960 Fix heredoc (Stadly)
This PR was merged into the 3.4 branch. Discussion ---------- Fix heredoc | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | none | License | MIT | Doc PR | none A heredoc was erroneously a nowdoc. Commits ------- 15f5f69 Fix heredoc
2 parents 47b739c + 15f5f69 commit d760c27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Translation/Tests/fixtures/extractor/translation.html.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
This template is used for translation message extraction tests
22
<?php echo $view['translator']->trans('single-quoted key'); ?>
33
<?php echo $view['translator']->trans('double-quoted key'); ?>
4-
<?php echo $view['translator']->trans(<<<'EOF'
4+
<?php echo $view['translator']->trans(<<<EOF
55
heredoc key
66
EOF
77
); ?>

0 commit comments

Comments
 (0)