mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Merge pull request #4647 from marc1706/ticket/15012
[ticket/15012] Use valid constructor in ftp_file_updater * marc1706/ticket/15012: [ticket/15012] Use valid constructor in ftp_file_updater
This commit is contained in:
commit
0b5218cec1
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ class ftp_file_updater implements file_updater_interface
|
||||||
* @param string $phpbb_root_path
|
* @param string $phpbb_root_path
|
||||||
* @param string $php_ext
|
* @param string $php_ext
|
||||||
*/
|
*/
|
||||||
public function __constructor(update_helper $update_helper, $phpbb_root_path, $php_ext)
|
public function __construct(update_helper $update_helper, $phpbb_root_path, $php_ext)
|
||||||
{
|
{
|
||||||
$this->transfer = null;
|
$this->transfer = null;
|
||||||
$this->update_helper = $update_helper;
|
$this->update_helper = $update_helper;
|
||||||
|
|
Loading…
Add table
Reference in a new issue