@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | |
52 | 52 | // Load the base configuration |
53 | 53 | $baseConfig = new Hive(); |
54 | - $baseConfig->load(dirname(__DIR__) . '/config/base.yml'); |
|
54 | + $baseConfig->load(dirname(__DIR__).'/config/base.yml'); |
|
55 | 55 | |
56 | 56 | // Load the debug configuration if this application will start in Debug mode |
57 | 57 | if ($this->debug) { |
58 | - $baseConfig->load(dirname(__DIR__) . '/config/debug.yml'); |
|
58 | + $baseConfig->load(dirname(__DIR__).'/config/debug.yml'); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | // Merge the actual config onto the base config |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | if (isset($element['class'])) { |
108 | 108 | |
109 | 109 | // This is a service definition |
110 | - $definition = Definition::initWithArray($namespace . ($namespace ? '.' : '') . $name, $element); |
|
110 | + $definition = Definition::initWithArray($namespace.($namespace ? '.' : '').$name, $element); |
|
111 | 111 | $this->container->define($definition); |
112 | 112 | |
113 | 113 | } else { |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | // This is an array of services in a namespace |
116 | 116 | $this->registerServices( |
117 | 117 | $element, |
118 | - $namespace . ($namespace ? '.' : '') . $name |
|
118 | + $namespace.($namespace ? '.' : '').$name |
|
119 | 119 | ); |
120 | 120 | |
121 | 121 | } |