1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-06 14:35:56 +02:00

[ticket/13952] Fix docblocks

PHPBB3-13952
This commit is contained in:
rxu 2015-06-20 23:41:53 +07:00
parent a8fe3926dc
commit e0476d4f53

View File

@ -20,24 +20,58 @@ namespace phpbb\cron\task\core;
*/ */
class tidy_search extends \phpbb\cron\task\base class tidy_search extends \phpbb\cron\task\base
{ {
/**
* phpBB root path
* @var string
*/
protected $phpbb_root_path; protected $phpbb_root_path;
/**
* PHP file extension
* @var string
*/
protected $php_ext; protected $php_ext;
/**
* Auth object
* @var \phpbb\auth\auth
*/
protected $auth; protected $auth;
/**
* Config object
* @var \phpbb\config\config
*/
protected $config; protected $config;
/**
* Database object
* @var \phpbb\db\driver\driver_interface
*/
protected $db; protected $db;
/**
* User object
* @var \phpbb\user
*/
protected $user; protected $user;
/**
* Event dispatcher object
* @var \phpbb\event\dispatcher_interface
*/
protected $phpbb_dispatcher; protected $phpbb_dispatcher;
/** /**
* Constructor. * 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 string $php_ext The PHP file extension
* @param \phpbb\auth\auth $auth The auth * @param \phpbb\auth\auth $auth The auth object
* @param \phpbb\config\config $config The config * @param \phpbb\config\config $config The config object
* @param \phpbb\db\driver\driver_interface $db The db connection * @param \phpbb\db\driver\driver_interface $db The database object
* @param \phpbb\user $user The user * @param \phpbb\user $user The user object
* @param \phpbb\event\dispatcher_interface $phpbb_dispatcher The event dispatcher * @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) 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)
{ {