phpbb\install\helper\iohandler\iohandler_interface::send_response PHP Method

send_response() public method

Renders or returns response message
public send_response ( boolean $no_more_output = false )
$no_more_output boolean Whether or not there will be more output in this output unit
    public function send_response($no_more_output = false);

Usage Example

 /**
  * {@inheritdoc}
  */
 public function write($message, $verbosity)
 {
     if ($verbosity <= migrator_output_handler_interface::VERBOSITY_VERBOSE) {
         $this->iohandler->add_log_message($message);
         $this->iohandler->send_response();
     }
 }
All Usage Examples Of phpbb\install\helper\iohandler\iohandler_interface::send_response