Inheritance: implements phpbb\install\helper\iohandler\iohandler_interface
示例#1
0
 /**
  * {@inheritdoc}
  */
 public function set_progress($task_lang_key, $task_number)
 {
     parent::set_progress($task_lang_key, $task_number);
     $this->send_response();
 }
示例#2
0
 /**
  * {@inheritdoc}
  */
 public function finish_progress($message_lang_key)
 {
     parent::finish_progress($message_lang_key);
     if ($this->progress_bar !== null) {
         $this->progress_bar->finish();
         $this->progress_bar = null;
     }
 }