diff --git a/http-handler/CoreMiddleware.php b/http-handler/CoreMiddleware.php index c31fc552..17fddc8e 100644 --- a/http-handler/CoreMiddleware.php +++ b/http-handler/CoreMiddleware.php @@ -23,6 +23,9 @@ class CoreMiddleware extends Middleware $this->response->withAccessControlAllowOrigin('*') ->withAccessControlRequestMethod($request->getAccessControlRequestMethod()) ->withAccessControlAllowHeaders($request->getAccessControlAllowHeaders()); + + var_dump($this->response); + return $handler->handle($request); }