diff --git a/Request.php b/Request.php index e2339e38a..8db37888f 100644 --- a/Request.php +++ b/Request.php @@ -302,10 +302,6 @@ public static function create(string $uri, string $method = 'GET', array $parame $server['REQUEST_METHOD'] = strtoupper($method); $components = parse_url($uri); - if (false === $components) { - throw new \InvalidArgumentException(sprintf('Malformed URI "%s".', $uri)); - } - if (false === $components) { throw new BadRequestException('Invalid URI.'); }