[feature/system-cron] adjust some last filenames to make autoloading work

PHPBB3-9596
This commit is contained in:
Igor Wiedler 2010-10-29 11:40:18 +02:00 committed by Oleg Pudeyev
parent bd58fa49c0
commit 132d2c2bd8
4 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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;
} }