aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-09 00:48:34 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-09 00:48:34 +0200
commit93d3c517e3aac385e5ce8adb7e20592abf8b4b14 (patch)
treec896c48ab6c1c9a27ad46a97da57315dbdfc374a /phpBB
parent3029f93000198908bddacb0079aae2d0ecda0c5d (diff)
downloadforums-93d3c517e3aac385e5ce8adb7e20592abf8b4b14.tar
forums-93d3c517e3aac385e5ce8adb7e20592abf8b4b14.tar.gz
forums-93d3c517e3aac385e5ce8adb7e20592abf8b4b14.tar.bz2
forums-93d3c517e3aac385e5ce8adb7e20592abf8b4b14.tar.xz
forums-93d3c517e3aac385e5ce8adb7e20592abf8b4b14.zip
[ticket/12074] Update the visibility of the constructor
PHPBB3-12074
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/console/command/extension/command.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/extension/command.php b/phpBB/phpbb/console/command/extension/command.php
index d133c2224f..72325ce768 100644
--- a/phpBB/phpbb/console/command/extension/command.php
+++ b/phpBB/phpbb/console/command/extension/command.php
@@ -16,7 +16,7 @@ abstract class command extends \phpbb\console\command\command
/** @var \phpbb\log\log */
protected $log;
- function __construct(\phpbb\extension\manager $manager, \phpbb\log\log $log)
+ public function __construct(\phpbb\extension\manager $manager, \phpbb\log\log $log)
{
$this->manager = $manager;
$this->log = $log;