Skip to content

Commit f87f664

Browse files
committed
Merge branch '2.3' into 2.7
* 2.3: Static code analysis Update AnnotationDirectoryLoader.php [FrameworkBundle] Fix template location for PHP templates [FrameworkBundle] Add path verification to the template parsing test cases
2 parents f9b9055 + 6e8e0da commit f87f664

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Dumper/PhpFileDumper.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ class PhpFileDumper extends FileDumper
2525
*/
2626
protected function format(MessageCatalogue $messages, $domain)
2727
{
28-
$output = "<?php\n\nreturn ".var_export($messages->all($domain), true).";\n";
29-
30-
return $output;
28+
return "<?php\n\nreturn ".var_export($messages->all($domain), true).";\n";
3129
}
3230

3331
/**

0 commit comments

Comments
 (0)