diff --git a/HttpServer/Client/Client.php b/HttpServer/Client/Client.php index e264540d..c91fb7e7 100644 --- a/HttpServer/Client/Client.php +++ b/HttpServer/Client/Client.php @@ -82,6 +82,7 @@ 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); }