Skip to content

Commit 4c24922

Browse files
committed
Merge branch '3.3' into 3.4
* 3.3: fixed some deprecation messages fixed some deprecation messages fixed some deprecation messages fixed some deprecation messages [2.7][DX] Use constant message contextualisation for deprecations
2 parents 4c5d558 + 9dc6b13 commit 4c24922

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)