aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/task.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2010-10-28 22:26:49 +0200
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-12 22:05:51 -0500
commita9e0f9947d1d71779a6c02dbc4c40f70f6a98723 (patch)
treeae3ada484c9c312198bba6214c3c620a9937a9b4 /phpBB/includes/cron/task.php
parent0aa491ffa20dbd45ed7b1142005041d2ddc975a9 (diff)
downloadforums-a9e0f9947d1d71779a6c02dbc4c40f70f6a98723.tar
forums-a9e0f9947d1d71779a6c02dbc4c40f70f6a98723.tar.gz
forums-a9e0f9947d1d71779a6c02dbc4c40f70f6a98723.tar.bz2
forums-a9e0f9947d1d71779a6c02dbc4c40f70f6a98723.tar.xz
forums-a9e0f9947d1d71779a6c02dbc4c40f70f6a98723.zip
[feature/system-cron] add phpbb_ prefix to all class names
PHPBB3-9596
Diffstat (limited to 'phpBB/includes/cron/task.php')
-rw-r--r--phpBB/includes/cron/task.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/cron/task.php b/phpBB/includes/cron/task.php
index 46eacff517..e66acd5492 100644
--- a/phpBB/includes/cron/task.php
+++ b/phpBB/includes/cron/task.php
@@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
* Cron task interface
* @package phpBB3
*/
-interface cron_task
+interface phpbb_cron_task
{
/**
* Runs this cron task.
@@ -58,7 +58,7 @@ interface cron_task
*
* @package phpBB3
*/
-interface parametrized_cron_task extends cron_task
+interface phpbb_parametrized_cron_task extends cron_task
{
/**
* Returns parameters of this cron task as an array.