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();
}