aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/cron/task/base.php (renamed from phpBB/includes/cron/task_base.php)0
-rw-r--r--phpBB/includes/cron/task/parametrized.php (renamed from phpBB/includes/cron/task_parametrized.php)2
-rw-r--r--phpBB/includes/cron/task/task.php (renamed from phpBB/includes/cron/task.php)0
-rw-r--r--phpBB/includes/cron/task/wrapper.php (renamed from phpBB/includes/cron/task_wrapper.php)2
4 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/cron/task_base.php b/phpBB/includes/cron/task/base.php
index ba399c18b1..ba399c18b1 100644
--- a/phpBB/includes/cron/task_base.php
+++ b/phpBB/includes/cron/task/base.php
diff --git a/phpBB/includes/cron/task_parametrized.php b/phpBB/includes/cron/task/parametrized.php
index 1906009ebe..d505cc3328 100644
--- a/phpBB/includes/cron/task_parametrized.php
+++ b/phpBB/includes/cron/task/parametrized.php
@@ -27,7 +27,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
-interface phpbb_cron_task_parametrized extends cron_task
+interface phpbb_cron_task_parametrized extends phpbb_cron_task
{
/**
* Returns parameters of this cron task as an array.
diff --git a/phpBB/includes/cron/task.php b/phpBB/includes/cron/task/task.php
index 38fb2a6cd1..38fb2a6cd1 100644
--- a/phpBB/includes/cron/task.php
+++ b/phpBB/includes/cron/task/task.php
diff --git a/phpBB/includes/cron/task_wrapper.php b/phpBB/includes/cron/task/wrapper.php
index 159382a8d1..e31f467cc8 100644
--- a/phpBB/includes/cron/task_wrapper.php
+++ b/phpBB/includes/cron/task/wrapper.php
@@ -27,7 +27,7 @@ class phpbb_cron_task_wrapper
/**
* Wraps a task $task, which must implement cron_task interface.
*/
- public function __construct(cron_task $task)
+ public function __construct(phpbb_cron_task $task)
{
$this->task = $task;
}