phpbb\db\output_handler\log_wrapper_migrator_output_handler::__construct PHP Method

__construct() public method

Constructor
public __construct ( phpbb\language\language $language, phpbb\db\output_handler\migrator_output_handler_interface $migrator, string $log_file, phpbb\filesystem\filesystem_interface $filesystem )
$language phpbb\language\language Language object
$migrator phpbb\db\output_handler\migrator_output_handler_interface Migrator output handler
$log_file string File to log to
$filesystem phpbb\filesystem\filesystem_interface phpBB filesystem object
    public function __construct(\phpbb\language\language $language, migrator_output_handler_interface $migrator, $log_file, \phpbb\filesystem\filesystem_interface $filesystem)
    {
        $this->language = $language;
        $this->migrator = $migrator;
        $this->filesystem = $filesystem;
        $this->file_open($log_file);
    }
log_wrapper_migrator_output_handler