1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[ticket/13740] Use language service in console application

PHPBB3-13740
This commit is contained in:
Mate Bartus
2015-07-24 18:05:10 +02:00
parent fc46dec813
commit be7e1ba7a0
2 changed files with 11 additions and 10 deletions

View File

@@ -26,18 +26,18 @@ class application extends \Symfony\Component\Console\Application
protected $in_shell = false;
/**
* @var \phpbb\user User object
* @var \phpbb\language\language User object
*/
protected $user;
protected $language;
/**
* @param string $name The name of the application
* @param string $version The version of the application
* @param \phpbb\user $user The user which runs the application (used for translation)
* @param string $name The name of the application
* @param string $version The version of the application
* @param \phpbb\language\language $language The user which runs the application (used for translation)
*/
public function __construct($name, $version, $user)
public function __construct($name, $version, \phpbb\language\language $language)
{
$this->user = $user;
$this->language = $language;
parent::__construct($name, $version);
}
@@ -53,7 +53,7 @@ class application extends \Symfony\Component\Console\Application
'safe-mode',
null,
InputOption::VALUE_NONE,
$this->user->lang('CLI_DESCRIPTION_OPTION_SAFE_MODE')
$this->language->lang('CLI_DESCRIPTION_OPTION_SAFE_MODE')
));
return $input_definition;
@@ -80,7 +80,7 @@ class application extends \Symfony\Component\Console\Application
'--shell',
'-s',
InputOption::VALUE_NONE,
$this->user->lang('CLI_DESCRIPTION_OPTION_SHELL')
$this->language->lang('CLI_DESCRIPTION_OPTION_SHELL')
));
return parent::getHelp();