mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
[feature/system-cron] add phpbb_ prefix to all class names
PHPBB3-9596
This commit is contained in:
committed by
Oleg Pudeyev
parent
0aa491ffa2
commit
a9e0f9947d
@@ -22,7 +22,7 @@ if (!defined('IN_PHPBB'))
|
||||
*
|
||||
* @package phpBB3
|
||||
*/
|
||||
class cron_task_wrapper
|
||||
class phpbb_cron_task_wrapper
|
||||
{
|
||||
/**
|
||||
* Wraps a task $task, which must implement cron_task interface.
|
||||
@@ -40,7 +40,7 @@ class cron_task_wrapper
|
||||
*/
|
||||
public function is_parametrized()
|
||||
{
|
||||
return $this->task instanceof parametrized_cron_task;
|
||||
return $this->task instanceof phpbb_parametrized_cron_task;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user