mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
[ticket/11012] Normalize $phpEx member vars to $php_ext
PHPBB3-11012
This commit is contained in:
@@ -38,7 +38,7 @@ class phpbb_style
|
||||
* PHP file extension
|
||||
* @var string
|
||||
*/
|
||||
private $phpEx;
|
||||
private $php_ext;
|
||||
|
||||
/**
|
||||
* phpBB config instance
|
||||
@@ -73,10 +73,10 @@ class phpbb_style
|
||||
* @param phpbb_style_path_provider $provider style path provider
|
||||
* @param phpbb_template $template template
|
||||
*/
|
||||
public function __construct($phpbb_root_path, $phpEx, $config, $user, phpbb_style_resource_locator $locator, phpbb_style_path_provider_interface $provider, phpbb_template $template)
|
||||
public function __construct($phpbb_root_path, $php_ext, $config, $user, phpbb_style_resource_locator $locator, phpbb_style_path_provider_interface $provider, phpbb_template $template)
|
||||
{
|
||||
$this->phpbb_root_path = $phpbb_root_path;
|
||||
$this->phpEx = $phpEx;
|
||||
$this->php_ext = $php_ext;
|
||||
$this->config = $config;
|
||||
$this->user = $user;
|
||||
$this->locator = $locator;
|
||||
|
Reference in New Issue
Block a user