aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/cron/task
diff options
context:
space:
mode:
authorrxu <rxu@mail.ru>2015-06-20 23:41:53 +0700
committerrxu <rxu@mail.ru>2015-06-20 23:41:53 +0700
commite0476d4f5377627c109d06549ffdc8c5bc49a3cc (patch)
treeb6c1df8a22d2b1fb05984335f22c72598032f1de /phpBB/phpbb/cron/task
parenta8fe3926dc32bbddb3c1624f7aa8a3696ecc17ca (diff)
downloadforums-e0476d4f5377627c109d06549ffdc8c5bc49a3cc.tar
forums-e0476d4f5377627c109d06549ffdc8c5bc49a3cc.tar.gz
forums-e0476d4f5377627c109d06549ffdc8c5bc49a3cc.tar.bz2
forums-e0476d4f5377627c109d06549ffdc8c5bc49a3cc.tar.xz
forums-e0476d4f5377627c109d06549ffdc8c5bc49a3cc.zip
[ticket/13952] Fix docblocks
PHPBB3-13952
Diffstat (limited to 'phpBB/phpbb/cron/task')
-rw-r--r--phpBB/phpbb/cron/task/core/tidy_search.php46
1 files changed, 40 insertions, 6 deletions
diff --git a/phpBB/phpbb/cron/task/core/tidy_search.php b/phpBB/phpbb/cron/task/core/tidy_search.php
index d3c21332fd..eb3970254f 100644
--- a/phpBB/phpbb/cron/task/core/tidy_search.php
+++ b/phpBB/phpbb/cron/task/core/tidy_search.php
@@ -20,24 +20,58 @@ namespace phpbb\cron\task\core;
*/
class tidy_search extends \phpbb\cron\task\base
{
+ /**
+ * phpBB root path
+ * @var string
+ */
protected $phpbb_root_path;
+
+ /**
+ * PHP file extension
+ * @var string
+ */
protected $php_ext;
+
+ /**
+ * Auth object
+ * @var \phpbb\auth\auth
+ */
protected $auth;
+
+ /**
+ * Config object
+ * @var \phpbb\config\config
+ */
protected $config;
+
+ /**
+ * Database object
+ * @var \phpbb\db\driver\driver_interface
+ */
protected $db;
+
+ /**
+ * User object
+ * @var \phpbb\user
+ */
protected $user;
+
+ /**
+ * Event dispatcher object
+ * @var \phpbb\event\dispatcher_interface
+ */
protected $phpbb_dispatcher;
/**
* Constructor.
*
- * @param string $phpbb_root_path The root path
+ * @param string $phpbb_root_path The phpBB root path
* @param string $php_ext The PHP file extension
- * @param \phpbb\auth\auth $auth The auth
- * @param \phpbb\config\config $config The config
- * @param \phpbb\db\driver\driver_interface $db The db connection
- * @param \phpbb\user $user The user
- * @param \phpbb\event\dispatcher_interface $phpbb_dispatcher The event dispatcher
+ * @param \phpbb\auth\auth $auth The auth object
+ * @param \phpbb\config\config $config The config object
+ * @param \phpbb\db\driver\driver_interface $db The database object
+ * @param \phpbb\user $user The user object
+ * @param \phpbb\event\dispatcher_interface $phpbb_dispatcher The event dispatcher object
*/
public function __construct($phpbb_root_path, $php_ext, \phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\user $user, \phpbb\event\dispatcher_interface $phpbb_dispatcher)
{