From c829f11f49db0b44f6526bf5e143103ef25d2270 Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Thu, 27 Feb 2014 15:39:07 -0500
Subject: [PATCH] Tab spacing too? Sure. Why not.

---
 module/VuDL/src/VuDL/Factory.php | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/module/VuDL/src/VuDL/Factory.php b/module/VuDL/src/VuDL/Factory.php
index bed53735110..8f534e6d863 100644
--- a/module/VuDL/src/VuDL/Factory.php
+++ b/module/VuDL/src/VuDL/Factory.php
@@ -49,8 +49,8 @@ class Factory
     public static function getConnectionManager(ServiceManager $sm)
     {
         return new \VuDL\Connection\Manager(
-                        array('Solr', 'Fedora'), $sm
-                );
+            array('Solr', 'Fedora'), $sm
+        );
     }
         
     /**
@@ -62,9 +62,9 @@ class Factory
      */
     public static function getConnectionFedora(ServiceManager $sm)
     {
-                return new \VuDL\Connection\Fedora(
-                        $sm->get('VuFind\Config')->get('VuDL')
-                );
+        return new \VuDL\Connection\Fedora(
+            $sm->get('VuFind\Config')->get('VuDL')
+        );
     }
         
     /**
@@ -76,10 +76,10 @@ class Factory
      */
     public static function getConnectionSolr(ServiceManager $sm)
     {
-                return new \VuDL\Connection\Solr(
-                        $sm->get('VuFind\Config')->get('VuDL'),
-                        $sm->get('VuFind\Search\BackendManager')->get('Solr')
-                );
+        return new \VuDL\Connection\Solr(
+            $sm->get('VuFind\Config')->get('VuDL'),
+            $sm->get('VuFind\Search\BackendManager')->get('Solr')
+        );
     }
 
     /**
-- 
GitLab