@@ -79,7 +79,6 @@ protected function configure()
79
79
new InputOption ('output-format ' , null , InputOption::VALUE_OPTIONAL , 'Override the default output format ' , 'xlf ' ),
80
80
new InputOption ('dump-messages ' , null , InputOption::VALUE_NONE , 'Should the messages be dumped in the console ' ),
81
81
new InputOption ('force ' , null , InputOption::VALUE_NONE , 'Should the update be done ' ),
82
- new InputOption ('no-backup ' , null , InputOption::VALUE_NONE , 'Should backup be disabled ' ),
83
82
new InputOption ('clean ' , null , InputOption::VALUE_NONE , 'Should clean not found messages ' ),
84
83
new InputOption ('domain ' , null , InputOption::VALUE_OPTIONAL , 'Specify the domain to update ' ),
85
84
new InputOption ('xliff-version ' , null , InputOption::VALUE_OPTIONAL , 'Override the default xliff version ' , '1.2 ' ),
@@ -283,10 +282,6 @@ protected function execute(InputInterface $input, OutputInterface $output): int
283
282
$ resultMessage = sprintf ('%d message%s successfully extracted ' , $ extractedMessagesCount , $ extractedMessagesCount > 1 ? 's were ' : ' was ' );
284
283
}
285
284
286
- if (true === $ input ->getOption ('no-backup ' )) {
287
- $ this ->writer ->disableBackup ();
288
- }
289
-
290
285
// save the files
291
286
if (true === $ input ->getOption ('force ' )) {
292
287
$ io ->comment ('Writing files... ' );
0 commit comments