@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | |
85 | 85 | public function loadVendorIfExist() |
86 | 86 | { |
87 | - $vendorAutoload = $this->application->getPath() . '/vendor/autoload.php'; |
|
87 | + $vendorAutoload = $this->application->getPath().'/vendor/autoload.php'; |
|
88 | 88 | if (FileSystem::exist($vendorAutoload)) { |
89 | 89 | Loader::requireOnce($vendorAutoload); |
90 | 90 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | protected function registerModule() |
123 | 123 | { |
124 | - $extractPath = $this->application->getDataPath() . '/extract-module'; |
|
124 | + $extractPath = $this->application->getDataPath().'/extract-module'; |
|
125 | 125 | FileSystem::make($extractPath); |
126 | 126 | foreach ($this->application->getModulePaths() as $path) { |
127 | 127 | $this->registerModuleFrom($path, $extractPath); |
@@ -68,13 +68,13 @@ |
||
68 | 68 | ); |
69 | 69 | $exported = []; |
70 | 70 | foreach ($props as $value) { |
71 | - $name = dechex($value->getModifiers()) . '$' . $value->getName(); |
|
71 | + $name = dechex($value->getModifiers()).'$'.$value->getName(); |
|
72 | 72 | $value->setAccessible(true); |
73 | 73 | $exported[$name] = new DebugObject($value->getValue($object), $this->context); |
74 | 74 | } |
75 | 75 | return $exported; |
76 | 76 | } catch (\ReflectionException $e) { |
77 | - return 'Err:' . $e->getMessage(); |
|
77 | + return 'Err:'.$e->getMessage(); |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 |