diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2014-03-05 19:18:54 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2014-03-05 19:18:54 -0600 |
commit | 98542547e2b0416f0f11bc1d75e5d999ae0d9f2b (patch) | |
tree | a143801d7fe7c28896f88d9033ab83e20d33c761 /phpBB/phpbb/version_helper.php | |
parent | dc5a34eb880974c47c2b3bcc8468c57cd6169612 (diff) | |
download | forums-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.php | 7 |
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; |