aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/version_helper.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2014-03-05 19:18:54 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2014-03-05 19:18:54 -0600
commit98542547e2b0416f0f11bc1d75e5d999ae0d9f2b (patch)
treea143801d7fe7c28896f88d9033ab83e20d33c761 /phpBB/phpbb/version_helper.php
parentdc5a34eb880974c47c2b3bcc8468c57cd6169612 (diff)
downloadforums-98542547e2b0416f0f11bc1d75e5d999ae0d9f2b.tar
forums-98542547e2b0416f0f11bc1d75e5d999ae0d9f2b.tar.gz
forums-98542547e2b0416f0f11bc1d75e5d999ae0d9f2b.tar.bz2
forums-98542547e2b0416f0f11bc1d75e5d999ae0d9f2b.tar.xz
forums-98542547e2b0416f0f11bc1d75e5d999ae0d9f2b.zip
[ticket/9871] Typehint and comment on var types
PHPBB3-9871
Diffstat (limited to 'phpBB/phpbb/version_helper.php')
-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;