Skip to content

Commit 9dc6b13

Browse files
committed
fixed some deprecation messages
1 parent 688e6ea commit 9dc6b13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dumper/FileDumper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function dump(MessageCatalogue $messages, $options = array())
7575
$fullpath = $options['path'].'/'.$this->getRelativePath($domain, $messages->getLocale());
7676
if (file_exists($fullpath)) {
7777
if ($this->backup) {
78-
@trigger_error('Creating a backup while dumping a message catalogue is deprecated since version 3.1 and will be removed in 4.0. Use TranslationWriter::disableBackup() to disable the backup.', E_USER_DEPRECATED);
78+
@trigger_error('Creating a backup while dumping a message catalogue is deprecated since Symfony 3.1 and will be removed in 4.0. Use TranslationWriter::disableBackup() to disable the backup.', E_USER_DEPRECATED);
7979
copy($fullpath, $fullpath.'~');
8080
}
8181
} else {

0 commit comments

Comments
 (0)