Completed
Push — master ( 5ea837...9dec3c )
by Paul
9s
created
src/ServiceManager/Factory/ModuleDefaultListenerFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,9 +49,9 @@
 block discarded – undo
49 49
          */
50 50
         if (!isset($config['module_paths'])) {
51 51
             $paths = array();
52
-            $cwd   = getcwd() . '/';
52
+            $cwd   = getcwd().'/';
53 53
             foreach (array('modules', 'vendor') as $dir) {
54
-                if (is_dir($dir = $cwd . $dir)) {
54
+                if (is_dir($dir = $cwd.$dir)) {
55 55
                     $paths[] = $dir;
56 56
                 }
57 57
             }
Please login to merge, or discard this patch.
src/Module/Controller/ControllerResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
             $controller->setServiceLocator($this->serviceManager);
91 91
         }
92 92
 
93
-        if($controller instanceof ContainerAwareInterface) {
93
+        if ($controller instanceof ContainerAwareInterface) {
94 94
             $controller->setContainer($this->serviceManager->get('SymfonyContainer'));
95 95
         }
96 96
 
Please login to merge, or discard this patch.