Completed
Push — master ( 37bc7f...665429 )
by Adam
06:53
created
src/IPub/Packages/Loaders/Loader.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -114,10 +114,10 @@  discard block
 block discarded – undo
114 114
 		}
115 115
 
116 116
 		foreach ($this->packageFiles as $packageFile) {
117
-			if (is_file($path . DIRECTORY_SEPARATOR . $packageFile)) {
118
-				$class = $this->getPackageClassByFile($path . DIRECTORY_SEPARATOR . $packageFile);
117
+			if (is_file($path.DIRECTORY_SEPARATOR.$packageFile)) {
118
+				$class = $this->getPackageClassByFile($path.DIRECTORY_SEPARATOR.$packageFile);
119 119
 
120
-				include_once $path . DIRECTORY_SEPARATOR . $packageFile;
120
+				include_once $path.DIRECTORY_SEPARATOR.$packageFile;
121 121
 
122 122
 				$package = $this->container->createInstance($class, [$data]);
123 123
 
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
 				}
233 233
 
234 234
 				if (isset($tokens[$i][1])) {
235
-					$namespace = $namespace ? $namespace . "\\" . $tokens[$i][1] : $tokens[$i][1];
235
+					$namespace = $namespace ? $namespace."\\".$tokens[$i][1] : $tokens[$i][1];
236 236
 					$dlm = TRUE;
237 237
 				}
238 238
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
 				$class_name = $tokens[$i][1];
247 247
 
248 248
 
249
-				$classes[] = $namespace . '\\' . $class_name;
249
+				$classes[] = $namespace.'\\'.$class_name;
250 250
 			}
251 251
 		}
252 252
 
Please login to merge, or discard this patch.