mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11450] Sort parameters alphabetically
PHPBB3-11450
This commit is contained in:
@@ -35,12 +35,13 @@ class phpbb_extension_metadata_manager
|
|||||||
* @param string $extension_manager An instance of the phpbb extension manager
|
* @param string $extension_manager An instance of the phpbb extension manager
|
||||||
* @param string $phpbb_root_path Path to the phpbb includes directory.
|
* @param string $phpbb_root_path Path to the phpbb includes directory.
|
||||||
*/
|
*/
|
||||||
public function __construct($ext_name, phpbb_extension_manager $extension_manager, $phpbb_root_path, phpbb_template $template, phpbb_config $config)
|
public function __construct($ext_name, phpbb_config $config, phpbb_extension_manager $extension_manager, phpbb_template $template, $phpbb_root_path)
|
||||||
{
|
{
|
||||||
$this->phpbb_root_path = $phpbb_root_path;
|
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
$this->template = $template;
|
|
||||||
$this->extension_manager = $extension_manager;
|
$this->extension_manager = $extension_manager;
|
||||||
|
$this->template = $template;
|
||||||
|
$this->phpbb_root_path = $phpbb_root_path;
|
||||||
|
|
||||||
$this->ext_name = $ext_name;
|
$this->ext_name = $ext_name;
|
||||||
$this->metadata = array();
|
$this->metadata = array();
|
||||||
$this->metadata_file = '';
|
$this->metadata_file = '';
|
||||||
|
Reference in New Issue
Block a user