1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/system-cron] Add phpDoc documentation for everything else.

PHPBB3-9596
This commit is contained in:
Andreas Fischer
2010-12-17 01:24:27 +01:00
committed by Oleg Pudeyev
parent 3c0561b68f
commit 47702b8ca7
12 changed files with 80 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ abstract class phpbb_cron_task_base implements phpbb_cron_task
*
* For example, a cron task that prunes forums can only run when
* forum pruning is enabled.
*
* @return bool
*/
public function is_runnable()
{
@@ -42,6 +44,8 @@ abstract class phpbb_cron_task_base implements phpbb_cron_task
/**
* Returns whether this cron task should run now, because enough time
* has passed since it was last run.
*
* @return bool
*/
public function should_run()
{
@@ -50,6 +54,8 @@ abstract class phpbb_cron_task_base implements phpbb_cron_task
/**
* Returns whether this cron task can be run in shutdown function.
*
* @return bool
*/
public function is_shutdown_function_safe()
{