diff --git a/HttpServer/Client/Client.php b/HttpServer/Client/Client.php index c91fb7e7..c1f4cc88 100644 --- a/HttpServer/Client/Client.php +++ b/HttpServer/Client/Client.php @@ -82,10 +82,8 @@ class Client extends ClientAbstracts if ($isHttps || $this->isSSL()) { $client = new SClient($host, 443, true); } else { - var_dump($host, $this->getPort()); $client = new SClient($host, $this->getPort(), false); } - if (strpos($path, '/') !== 0) { $path = '/' . $path; }