8000 [Translation][File dumper] allow get file content without writing in file. by aitboudad · Pull Request #15786 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Translation][File dumper] allow get file content without writing in file. #15786

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 22, 2015
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
8000
Diff view
Diff view
Prev Previous commit
fixed typo.
  • Loading branch information
aitboudad committed Sep 21, 2015
commit 805acc90478aaba80dbba4e15961b2fb29efa6c7
2 changes: 1 addition & 1 deletion src/Symfony/Component/Translation/Dumper/FileDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public function dump(MessageCatalogue $messages, $options = array())
*/
public function formatCatalogue(MessageCatalogue $messages, $domain, array $options = array())
{
@trigger_error('The '.__METHOD__.' method will replace the format method in 3.0. You should overwritten it instead of overwriting format instead.', E_USER_DEPRECATED);
@trigger_error('The '.__METHOD__.' method will replace the format method in 3.0. You should overwrite it instead of overwriting format instead.', E_USER_DEPRECATED);

return $this->format($messages, $domain);
}
Expand Down
0