Ip\Application::handleResponse PHP Method

handleResponse() public method

public handleResponse ( Ip\Response $response )
$response Ip\Response
    public function handleResponse(\Ip\Response $response)
    {
        $response = ipFilter('ipSendResponse', $response);
        ipEvent('ipBeforeResponseSent', array('response' => $response));
        if (method_exists($response, 'execute')) {
            $response = $response->execute();
        }
        $response->send();
    }