diff --git a/RequestFacede.php b/RequestFacede.php index b36dc43..f6c2dff 100644 --- a/RequestFacede.php +++ b/RequestFacede.php @@ -23,7 +23,7 @@ final class RequestFacede implements RequestInterface */ public function __construct() { - $this->request = new Request(); + $this->request = Request::createFromGlobals(); } /** @@ -145,4 +145,4 @@ final public function isPut() { return $this->request->isMethod(Request::METHOD_PUT); } -} \ No newline at end of file +}