diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-29 17:47:43 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-21 23:58:53 +0100 |
commit | 7c683608ab0714dd78eed66b49725d6b3efed6f9 (patch) | |
tree | 45f3c959835754bd3dfd5f9291613fb7945ed5dd /phpBB/includes | |
parent | 7f8c4d877a9d9d5837e1b3612b2678d024ca087b (diff) | |
download | forums-7c683608ab0714dd78eed66b49725d6b3efed6f9.tar forums-7c683608ab0714dd78eed66b49725d6b3efed6f9.tar.gz forums-7c683608ab0714dd78eed66b49725d6b3efed6f9.tar.bz2 forums-7c683608ab0714dd78eed66b49725d6b3efed6f9.tar.xz forums-7c683608ab0714dd78eed66b49725d6b3efed6f9.zip |
[ticket/10744] Type hint objects for IDE usages
PHPBB3-10744
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_styles.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 330da0ff73..78cab57446 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -31,13 +31,28 @@ class acp_styles protected $default_style = 0; protected $reserved_style_names = array('adm', 'admin', 'all'); + /** @var \phpbb\db\driver\driver_interface */ protected $db; + + /** @var \phpbb\user */ protected $user; + + /** @var \phpbb\template\template */ protected $template; + + /** @var \phpbb\request\request_interface */ protected $request; + + /** @var \phpbb\cache\driver\driver_interface */ protected $cache; + + /** @var \phpbb\auth\auth */ protected $auth; + + /** @var string */ protected $phpbb_root_path; + + /** @var string */ protected $php_ext; public function main($id, $mode) |