Completed
Push — master ( 810a67...277089 )
by Markus
03:03
created
src/ZendSentry/Mvc/View/Console/ExceptionStrategy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -209,7 +209,7 @@
 block discarded – undo
209 209
                             ':line',
210 210
                             ':stack',
211 211
                             ':previous',
212
-                        ),array(
212
+                        ), array(
213 213
                             get_class($exception),
214 214
                             $exception->getMessage(),
215 215
                             $exception->getCode(),
Please login to merge, or discard this patch.
Module.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     public function getAutoloaderConfig()
124 124
     {
125 125
         return array('Zend\Loader\StandardAutoloader' => array('namespaces' => array(
126
-            __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
126
+            __NAMESPACE__ => __DIR__.'/src/'.__NAMESPACE__,
127 127
         )));
128 128
     }
129 129
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      */
133 133
     public function getConfig()
134 134
     {
135
-        return include __DIR__ . '/config/module.config.php';
135
+        return include __DIR__.'/config/module.config.php';
136 136
     }
137 137
 
138 138
     /**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         $sharedManager->attach('*', 'log', function($event) use ($raven, $logLevels) {
153 153
             /** @var $event MvcEvent */
154 154
             if (is_object($event->getTarget())) {
155
-                $target   = get_class($event->getTarget());
155
+                $target = get_class($event->getTarget());
156 156
             } else {
157 157
                 $target = (string) $event->getTarget();
158 158
             }
Please login to merge, or discard this patch.