[ticket/15012] Use valid constructor in ftp_file_updater

PHPBB3-15012
This commit is contained in:
Marc Alexander 2017-01-14 22:48:24 +01:00
parent d226059b98
commit abf7a4f663
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -47,7 +47,7 @@ class ftp_file_updater implements file_updater_interface
* @param string $phpbb_root_path
* @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->update_helper = $update_helper;