From 8593b2fa9893efd94f0e495bc7fdc50704897368 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sun, 14 Apr 2013 22:45:17 +0200 Subject: [PATCH] [SocketClient] Rename Connector::createTcp to Connector::create --- Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Request.php b/Request.php index 345d5b4..d855a7c 100644 --- a/Request.php +++ b/Request.php @@ -218,7 +218,7 @@ protected function connect() $port = $this->requestData->getPort(); return $this->connector - ->createTcp($host, $port); + ->create($host, $port); } public function setResponseFactory($factory)