You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@trigger_error(sprintf('Passing a command name as the first argument of "%s" is deprecated since version 3.4 and will be removed in 4.0. If the command was registered by convention, make it a service instead.', __METHOD__), E_USER_DEPRECATED);
@@ -64,7 +64,7 @@ public function __construct($translator = null, TranslationLoader $loader = null
64
64
parent::__construct();
65
65
66
66
$this->translator = $translator;
67
-
$this->loader = $loader;
67
+
$this->reader = $reader;
68
68
$this->extractor = $extractor;
69
69
}
70
70
@@ -142,7 +142,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
if (!$writerinstanceof TranslationWriterInterface) {
52
52
@trigger_error(sprintf('Passing a command name as the first argument of "%s" is deprecated since version 3.4 and will be removed in 4.0. If the command was registered by convention, make it a service instead.', __METHOD__), E_USER_DEPRECATED);
@@ -59,7 +59,7 @@ public function __construct($writer = null, TranslationLoader $loader = null, Ex
59
59
parent::__construct();
60
60
61
61
$this->writer = $writer;
62
-
$this->loader = $loader;
62
+
$this->reader = $reader;
63
63
$this->extractor = $extractor;
64
64
$this->defaultLocale = $defaultLocale;
65
65
}
@@ -127,7 +127,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
@trigger_error(sprintf('The class "%s" is deprecated since version 3.4 and will be removed in 4.0. Use "%s" instead. ', TranslationLoader::class, TranslationReader::class), E_USER_DEPRECATED);
17
18
18
19
/**
19
-
* TranslationLoader loads translation messages from translation files.
20
-
*
21
-
* @author Michel Salib <michelsalib@hotmail.com>
20
+
* @deprecated since version 3.4 and will be removed in 4.0. Use Symfony\Component\Translation\Reader\TranslationReader instead
0 commit comments