aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/manager.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-07-26 16:15:56 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-07-26 16:15:56 +0200
commit5cdcaaa5318c05a04c544eeb25ced571737c2ce3 (patch)
treea436b178dc328722163668df76c937dfc55dd346 /phpBB/includes/cron/manager.php
parentcec4c94f2edff43508f20d8838399f4114557134 (diff)
downloadforums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.gz
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.bz2
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.tar.xz
forums-5cdcaaa5318c05a04c544eeb25ced571737c2ce3.zip
[feature/dic] Rename {phpEx => php_ext} for consistency
PHPBB3-10739
Diffstat (limited to 'phpBB/includes/cron/manager.php')
-rw-r--r--phpBB/includes/cron/manager.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/cron/manager.php b/phpBB/includes/cron/manager.php
index 5ea909eb2c..018ae39f18 100644
--- a/phpBB/includes/cron/manager.php
+++ b/phpBB/includes/cron/manager.php
@@ -32,17 +32,17 @@ class phpbb_cron_manager
*/
protected $tasks = array();
- protected $phpbb_root_path, $phpEx;
+ protected $phpbb_root_path, $php_ext;
/**
* Constructor. Loads all available tasks.
*
* @param array|Traversable $tasks Provides an iterable set of task names
*/
- public function __construct($tasks, $phpbb_root_path, $phpEx)
+ public function __construct($tasks, $phpbb_root_path, $php_ext)
{
$this->phpbb_root_path = $phpbb_root_path;
- $this->phpEx = $phpEx;
+ $this->php_ext = $php_ext;
$this->load_tasks($tasks);
}
@@ -126,6 +126,6 @@ class phpbb_cron_manager
public function wrap_task(phpbb_cron_task $task)
{
- return new phpbb_cron_task_wrapper($task, $this->phpbb_root_path, $this->phpEx);
+ return new phpbb_cron_task_wrapper($task, $this->phpbb_root_path, $this->php_ext);
}
}