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

[ticket/12715] Cleanup comments in \phpbb\cron\*

PHPBB3-12715
This commit is contained in:
Tristan Darricau 2014-06-15 13:10:12 +02:00
parent 358a10d8a9
commit 4ac9315728
2 changed files with 3 additions and 2 deletions

View File

@ -34,7 +34,7 @@ class manager
/** /**
* Constructor. Loads all available tasks. * 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) public function __construct($tasks, $phpbb_root_path, $php_ext)
{ {
@ -48,7 +48,7 @@ class manager
* Loads tasks given by name, wraps them * Loads tasks given by name, wraps them
* and puts them into $this->tasks. * 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 * @return null
*/ */

View File

@ -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 int $forum_id Forum ID of forum that should be pruned
* @param string $prune_mode Prune mode * @param string $prune_mode Prune mode
* @param int $prune_flags Prune flags * @param int $prune_flags Prune flags
* @param int $prune_days Prune date in days
* @param int $prune_freq Prune frequency * @param int $prune_freq Prune frequency
* @return null * @return null
*/ */