Prado\TApplication::getResponse PHP Метод

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

public getResponse ( ) : THttpResponse
Результат Prado\Web\THttpResponse the response module
    public function getResponse()
    {
        if (!$this->_response) {
            $this->_response = new THttpResponse();
            $this->_response->init(null);
        }
        return $this->_response;
    }