mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12476] Label the constructor as public
Label the the constructor as public. PHPBB3-12476
This commit is contained in:
parent
f2471878a6
commit
5dacd7ff5b
1 changed files with 1 additions and 1 deletions
2
phpBB/phpbb/console/command/cache/purge.php
vendored
2
phpBB/phpbb/console/command/cache/purge.php
vendored
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue