[ticket/12476] Label the constructor as public

Label the the constructor as public.

PHPBB3-12476
This commit is contained in:
n-aleha 2014-05-09 00:54:20 +03:00
parent f2471878a6
commit 5dacd7ff5b

View file

@ -31,7 +31,7 @@ class purge extends \phpbb\console\command\command
/** @var \phpbb\config\config */ /** @var \phpbb\config\config */
protected $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->cache = $cache;
$this->db = $db; $this->db = $db;