From 7c683608ab0714dd78eed66b49725d6b3efed6f9 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 29 Oct 2014 17:47:43 +0100 Subject: [PATCH] [ticket/10744] Type hint objects for IDE usages PHPBB3-10744 --- phpBB/includes/acp/acp_styles.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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)