1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-01 20:19:13 +02:00

[ticket/11373] Use inheritdoc

PHPBB3-11373
This commit is contained in:
Nathan Guse 2013-08-28 12:39:57 -05:00
parent a79e3b3415
commit 0a7508439f

View File

@ -38,9 +38,7 @@ class phpbb_cron_task_core_prune_notifications extends phpbb_cron_task_base
} }
/** /**
* Runs this cron task. * {@inheritdoc}
*
* @return null
*/ */
public function run() 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.= * {@inheritdoc}
*
* @return bool
*/ */
public function is_runnable() 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 * {@inheritdoc}
* has passed since it was last run.
*
* The interval between prune notifications is specified in board
* configuration.
*
* @return bool
*/ */
public function should_run() public function should_run()
{ {