diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 13:10:12 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-06-15 19:14:32 +0200 |
commit | 4ac93157289843f26a42992fc9022cd88e1c174e (patch) | |
tree | 21df6b1c6253d45161dab004119a377021984ae1 /phpBB/phpbb/cron | |
parent | 358a10d8a9e244572568e89cdb87fd83f42759cf (diff) | |
download | forums-4ac93157289843f26a42992fc9022cd88e1c174e.tar forums-4ac93157289843f26a42992fc9022cd88e1c174e.tar.gz forums-4ac93157289843f26a42992fc9022cd88e1c174e.tar.bz2 forums-4ac93157289843f26a42992fc9022cd88e1c174e.tar.xz forums-4ac93157289843f26a42992fc9022cd88e1c174e.zip |
[ticket/12715] Cleanup comments in \phpbb\cron\*
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/cron')
-rw-r--r-- | phpBB/phpbb/cron/manager.php | 4 | ||||
-rw-r--r-- | phpBB/phpbb/cron/task/core/prune_shadow_topics.php | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/phpbb/cron/manager.php b/phpBB/phpbb/cron/manager.php index f04f063228..b0601e641a 100644 --- a/phpBB/phpbb/cron/manager.php +++ b/phpBB/phpbb/cron/manager.php @@ -34,7 +34,7 @@ class manager /** * Constructor. Loads all available tasks. * - * @param array|Traversable $tasks Provides an iterable set of task names + * @param array|\Traversable $tasks Provides an iterable set of task names */ public function __construct($tasks, $phpbb_root_path, $php_ext) { @@ -48,7 +48,7 @@ class manager * Loads tasks given by name, wraps them * and puts them into $this->tasks. * - * @param array|Traversable $tasks Array of instances of \phpbb\cron\task\task + * @param array|\Traversable $tasks Array of instances of \phpbb\cron\task\task * * @return null */ diff --git a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php index ca5044343f..381483c798 100644 --- a/phpBB/phpbb/cron/task/core/prune_shadow_topics.php +++ b/phpBB/phpbb/cron/task/core/prune_shadow_topics.php @@ -164,6 +164,7 @@ class prune_shadow_topics extends \phpbb\cron\task\base implements \phpbb\cron\t * @param int $forum_id Forum ID of forum that should be pruned * @param string $prune_mode Prune mode * @param int $prune_flags Prune flags + * @param int $prune_days Prune date in days * @param int $prune_freq Prune frequency * @return null */ |