diff --git a/HttpServer/Client/ClientAbstracts.php b/HttpServer/Client/ClientAbstracts.php index 30722380..ea79ba55 100644 --- a/HttpServer/Client/ClientAbstracts.php +++ b/HttpServer/Client/ClientAbstracts.php @@ -736,6 +736,7 @@ abstract class ClientAbstracts extends Component implements IClient if (strpos($path, '/') !== 0) { $path = '/' . $path; } + var_dump($this->host, $isHttps, $path); return [$this->host, $isHttps, $path]; }