@@ -49,9 +49,9 @@ |
||
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 | } |
@@ -90,7 +90,7 @@ |
||
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 |