From 8a2115d99191959e0ac4a53a9fac73d8053a96fb Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 21 Dec 2012 09:38:12 -0500
Subject: [PATCH] Made $url parameter to createClient optional (this will
 generate a proxified object by default).

---
 module/VuFindHttp/src/VuFindHttp/HttpService.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/module/VuFindHttp/src/VuFindHttp/HttpService.php b/module/VuFindHttp/src/VuFindHttp/HttpService.php
index 728c5dbbca7..b17833f3070 100644
--- a/module/VuFindHttp/src/VuFindHttp/HttpService.php
+++ b/module/VuFindHttp/src/VuFindHttp/HttpService.php
@@ -158,11 +158,13 @@ class HttpService implements HttpServiceInterface
      *
      * @return \Zend\Http\Client
      */
-    public function createClient ($url, $method = \Zend\Http\Request::METHOD_GET, $timeout = null)
+    public function createClient ($url = null, $method = \Zend\Http\Request::METHOD_GET, $timeout = null)
     {
         $client = new \Zend\Http\Client();
         $client->setMethod($method);
-        $client->setUri($url);
+        if (null !== $url) {
+            $client->setUri($url);
+        }
         if ($timeout) {
             $client->setOptions(array('timeout' => $timeout));
         }
-- 
GitLab