diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-08-28 12:39:57 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-08-28 12:39:57 -0500 |
commit | 0a7508439f20b358f1e51d3f2d8105903588e430 (patch) | |
tree | 6086a20cc7c258e1d7f5725256da848e65bc7cdf /phpBB/phpbb/cron | |
parent | a79e3b341578696c1dd6720d7589b10a3226dbb5 (diff) | |
download | forums-0a7508439f20b358f1e51d3f2d8105903588e430.tar forums-0a7508439f20b358f1e51d3f2d8105903588e430.tar.gz forums-0a7508439f20b358f1e51d3f2d8105903588e430.tar.bz2 forums-0a7508439f20b358f1e51d3f2d8105903588e430.tar.xz forums-0a7508439f20b358f1e51d3f2d8105903588e430.zip |
[ticket/11373] Use inheritdoc
PHPBB3-11373
Diffstat (limited to 'phpBB/phpbb/cron')
-rw-r--r-- | phpBB/phpbb/cron/task/core/prune_notifications.php | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/phpBB/phpbb/cron/task/core/prune_notifications.php b/phpBB/phpbb/cron/task/core/prune_notifications.php index 6d38091e9f..296c0ae64f 100644 --- a/phpBB/phpbb/cron/task/core/prune_notifications.php +++ b/phpBB/phpbb/cron/task/core/prune_notifications.php @@ -38,9 +38,7 @@ class phpbb_cron_task_core_prune_notifications extends phpbb_cron_task_base } /** - * Runs this cron task. - * - * @return null + * {@inheritdoc} */ public function run() { @@ -50,9 +48,7 @@ class phpbb_cron_task_core_prune_notifications extends phpbb_cron_task_base } /** - * Returns whether this cron task can run, given current board configuration.= - * - * @return bool + * {@inheritdoc} */ public function is_runnable() { @@ -60,13 +56,7 @@ class phpbb_cron_task_core_prune_notifications extends phpbb_cron_task_base } /** - * Returns whether this cron task should run now, because enough time - * has passed since it was last run. - * - * The interval between prune notifications is specified in board - * configuration. - * - * @return bool + * {@inheritdoc} */ public function should_run() { |