aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/version_helper.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/phpbb/version_helper.php b/phpBB/phpbb/version_helper.php
index 54c56a1b7f..6f2fd0c732 100644
--- a/phpBB/phpbb/version_helper.php
+++ b/phpBB/phpbb/version_helper.php
@@ -14,11 +14,16 @@ namespace phpbb;
*/
class version_helper
{
+ /** @var \phpbb\cache\service */
protected $cache;
+
+ /** @var \phpbb\config\config */
protected $config;
+
+ /** @var \phpbb\user */
protected $user;
- public function __construct($cache, $config, $user)
+ public function __construct(\phpbb\cache\service $cache, \phpbb\config\config $config, \phpbb\user $user)
{
$this->cache = $cache;
$this->config = $config;