@@ -114,10 +114,10 @@ discard block |
||
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 |
||
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 |
||
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 |