diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-04 15:34:11 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-04 15:34:11 +0200 |
commit | a14d16172c26fd8f849be4d3afcaac93b6dc4086 (patch) | |
tree | cf8c5bca80606fae4388a44defb769a024228a15 /phpBB | |
parent | 6c9518ea3232d02605ea4bd57e1bf56a91d05855 (diff) | |
download | forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.gz forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.bz2 forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.tar.xz forums-a14d16172c26fd8f849be4d3afcaac93b6dc4086.zip |
[ticket/12655] Set the arguments of \phpbb\console\application as required
PHPBB3-12655
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/console/application.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/application.php b/phpBB/phpbb/console/application.php index 00477ee7d7..eb8094e65f 100644 --- a/phpBB/phpbb/console/application.php +++ b/phpBB/phpbb/console/application.php @@ -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); |