Habari\RestResponse::out PHP Метод

out() публичный Метод

Output the response
public out ( )
    public function out()
    {
        $accept = $this->get_accept();
        header('content-type: ' . $accept);
        echo $this->get();
    }