mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 13:58:54 +00:00
[feature/system-cron] adjust some last filenames to make autoloading work
PHPBB3-9596
This commit is contained in:
parent
bd58fa49c0
commit
132d2c2bd8
4 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue