From f1e59612e77504a75710d37640eee5460c208e24 Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 21 Dec 2012 10:16:00 -0500
Subject: [PATCH] Fixed some namespace/naming issues.

---
 vendor/SerialsSolutions/Summon/Zend2.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/vendor/SerialsSolutions/Summon/Zend2.php b/vendor/SerialsSolutions/Summon/Zend2.php
index 7ee656c15a3..e309e271a85 100644
--- a/vendor/SerialsSolutions/Summon/Zend2.php
+++ b/vendor/SerialsSolutions/Summon/Zend2.php
@@ -27,7 +27,7 @@
  * @link     http://api.summon.serialssolutions.com/help/api/ API Documentation
  */
 namespace SerialsSolutions\Summon;
-use Zend\Http\Client as HttpClient;
+use SerialsSolutions_Summon_Exception, Zend\Http\Client as HttpClient;
 
 /**
  * Summon Search API Interface (Zend Framework 2 implementation)
@@ -43,7 +43,7 @@ class Zend2 extends \SerialsSolutions_Summon_Base
 {
     /**
      * The HTTP_Request object used for API transactions
-     * @var object HTTP_Request
+     * @var HttpClient
      */
     protected $client;
 
@@ -52,9 +52,9 @@ class Zend2 extends \SerialsSolutions_Summon_Base
      *
      * Sets up the Summon API Client
      *
-     * @param string           $apiId   Summon API ID
-     * @param string           $apiKey  Summon API Key
-     * @param array            $options Associative array of additional options;
+     * @param string     $apiId   Summon API ID
+     * @param string     $apiKey  Summon API Key
+     * @param array      $options Associative array of additional options;
      * legal keys:
      *    <ul>
      *      <li>authedUser - is the end-user authenticated?</li>
@@ -63,7 +63,7 @@ class Zend2 extends \SerialsSolutions_Summon_Base
      *      <li>sessionId - Summon session ID to apply</li>
      *      <li>version - API version to use</li>
      *    </ul>
-     * @param Zend_Http_Client $client  HTTP client object (optional)
+     * @param HttpClient $client  HTTP client object (optional)
      */
     public function __construct($apiId, $apiKey, $options = array(), $client = null)
     {
-- 
GitLab