[ticket/12655] Set the arguments of \phpbb\console\application as required

PHPBB3-12655
This commit is contained in:
Tristan Darricau 2014-06-04 15:34:11 +02:00
parent 6c9518ea32
commit a14d16172c

View file

@ -27,7 +27,7 @@ class application extends \Symfony\Component\Console\Application
* @param string $version The version of the application
* @param \phpbb\user $user The user which runs the application (used for translation)
*/
public function __construct($name = 'UNKNOWN', $version = 'UNKNOWN', \phpbb\user $user)
public function __construct($name, $version, \phpbb\user $user)
{
parent::__construct($name, $version);