mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-17 07:01:22 +02:00
[feature/system-cron] adjust some last filenames to make autoloading work
PHPBB3-9596
This commit is contained in:
committed by
Oleg Pudeyev
parent
bd58fa49c0
commit
132d2c2bd8
@@ -27,7 +27,7 @@ if (!defined('IN_PHPBB'))
|
|||||||
*
|
*
|
||||||
* @package phpBB3
|
* @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.
|
* Returns parameters of this cron task as an array.
|
@@ -27,7 +27,7 @@ class phpbb_cron_task_wrapper
|
|||||||
/**
|
/**
|
||||||
* Wraps a task $task, which must implement cron_task interface.
|
* 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;
|
$this->task = $task;
|
||||||
}
|
}
|
Reference in New Issue
Block a user