diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-26 10:47:03 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-26 10:47:03 -0500 |
commit | bad7661ee985e63b8765845d710367e9f4f8260b (patch) | |
tree | c353ce4e90a8a447477891f3f8f693c21a0fd1cd | |
parent | 0b47a7823a8c48e31442595d4c802ae7f77096f3 (diff) | |
download | forums-bad7661ee985e63b8765845d710367e9f4f8260b.tar forums-bad7661ee985e63b8765845d710367e9f4f8260b.tar.gz forums-bad7661ee985e63b8765845d710367e9f4f8260b.tar.bz2 forums-bad7661ee985e63b8765845d710367e9f4f8260b.tar.xz forums-bad7661ee985e63b8765845d710367e9f4f8260b.zip |
[ticket/11037] Add/update docblocks.
PHPBB3-11037
-rw-r--r-- | phpBB/includes/cache/service.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/includes/cache/service.php b/phpBB/includes/cache/service.php index 0768236f3d..8c1e1ea1f8 100644 --- a/phpBB/includes/cache/service.php +++ b/phpBB/includes/cache/service.php @@ -21,16 +21,49 @@ if (!defined('IN_PHPBB')) */ class phpbb_cache_service { + /** + * Cache driver. + * + * @var phpbb_cache_driver_interface + */ protected $driver; + + /** + * The config. + * + * @var phpbb_config + */ protected $config; + + /** + * Database connection. + * + * @var phpbb_db_driver + */ protected $db; + + /** + * Root path. + * + * @var string + */ protected $phpbb_root_path; + + /** + * PHP extension. + * + * @var string + */ protected $php_ext; /** * Creates a cache service around a cache driver * * @param phpbb_cache_driver_interface $driver The cache driver + * @param phpbb_config $config The config + * @param phpbb_db_driver $db Database connection + * @param string $phpbb_root_path Root path + * @param string $php_ext PHP extension */ public function __construct(phpbb_cache_driver_interface $driver, phpbb_config $config, phpbb_db_driver $db, $phpbb_root_path, $php_ext) { |