phpbb\install\console\command\update\update::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\language\language $language, phpbb\install\helper\iohandler\factory $factory, installer $installer, phpbb\install\helper\install_helper $install_helper )
$language phpbb\language\language
$factory phpbb\install\helper\iohandler\factory
$installer phpbb\install\installer
$install_helper phpbb\install\helper\install_helper
    public function __construct(language $language, factory $factory, installer $installer, install_helper $install_helper)
    {
        $this->iohandler_factory = $factory;
        $this->installer = $installer;
        $this->language = $language;
        $this->install_helper = $install_helper;
        parent::__construct(new \phpbb\user($language, 'datetime'));
    }