public function onKernalResponse(\Event $event)
 {
     $response = $event->getResponse();
     if ($response instanceof \Response || $response instanceof \RedirectResponse || $response instanceof \JsonResponse) {
         $response->send();
     }
     \EventDispatcher::dispatch(KernalEvent::HTTPFINISH, new HttpEvent($event->getRequest(), $response));
 }