diff options
author | n-aleha <nick_aleha@myway.com> | 2014-05-09 00:54:20 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-05-09 01:50:52 +0300 |
commit | 5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e (patch) | |
tree | 1aeb896e2abc4dadb38d8dd0fa9ec6d39e27a3ce /phpBB/phpbb/console/command/cache | |
parent | f2471878a6f7ea2f6fd243520709f693e4260da7 (diff) | |
download | forums-5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e.tar forums-5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e.tar.gz forums-5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e.tar.bz2 forums-5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e.tar.xz forums-5dacd7ff5ba7826a1831f6b243fc3c5e8fb2ce0e.zip |
[ticket/12476] Label the constructor as public
Label the the constructor as public.
PHPBB3-12476
Diffstat (limited to 'phpBB/phpbb/console/command/cache')
-rw-r--r-- | phpBB/phpbb/console/command/cache/purge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/cache/purge.php b/phpBB/phpbb/console/command/cache/purge.php index 9c880a859f..013183cb35 100644 --- a/phpBB/phpbb/console/command/cache/purge.php +++ b/phpBB/phpbb/console/command/cache/purge.php @@ -31,7 +31,7 @@ class purge extends \phpbb\console\command\command /** @var \phpbb\config\config */ protected $config; - function __construct(\phpbb\cache\driver\driver_interface $cache, \phpbb\db\driver\driver_interface $db, \phpbb\auth\auth $auth, \phpbb\log\log $log, \phpbb\user $user, \phpbb\config\config $config) + public function __construct(\phpbb\cache\driver\driver_interface $cache, \phpbb\db\driver\driver_interface $db, \phpbb\auth\auth $auth, \phpbb\log\log $log, \phpbb\user $user, \phpbb\config\config $config) { $this->cache = $cache; $this->db = $db; |