@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | * the \OCP\AppFramework\Bootstrap\IBootstrap interface |
113 | 113 | */ |
114 | 114 | $appNameSpace = App::buildAppNamespace($appId); |
115 | - $applicationClassName = $appNameSpace . '\\AppInfo\\Application'; |
|
115 | + $applicationClassName = $appNameSpace.'\\AppInfo\\Application'; |
|
116 | 116 | try { |
117 | 117 | if (class_exists($applicationClassName) && in_array(IBootstrap::class, class_implements($applicationClassName), true)) { |
118 | 118 | try { |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | $application->register($this->registrationContext->for($appId)); |
127 | 127 | } |
128 | 128 | } catch (Throwable $e) { |
129 | - $this->logger->emergency('Error during app service registration: ' . $e->getMessage(), [ |
|
129 | + $this->logger->emergency('Error during app service registration: '.$e->getMessage(), [ |
|
130 | 130 | 'exception' => $e, |
131 | 131 | 'app' => $appId, |
132 | 132 | ]); |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | $this->bootedApps[$appId] = true; |
158 | 158 | |
159 | 159 | $appNameSpace = App::buildAppNamespace($appId); |
160 | - $applicationClassName = $appNameSpace . '\\AppInfo\\Application'; |
|
160 | + $applicationClassName = $appNameSpace.'\\AppInfo\\Application'; |
|
161 | 161 | if (!class_exists($applicationClassName)) { |
162 | 162 | // Nothing to boot |
163 | 163 | return; |
@@ -178,11 +178,11 @@ discard block |
||
178 | 178 | $application->boot($context); |
179 | 179 | } |
180 | 180 | } catch (QueryException $e) { |
181 | - $this->logger->error("Could not boot $appId: " . $e->getMessage(), [ |
|
181 | + $this->logger->error("Could not boot $appId: ".$e->getMessage(), [ |
|
182 | 182 | 'exception' => $e, |
183 | 183 | ]); |
184 | 184 | } catch (Throwable $e) { |
185 | - $this->logger->emergency("Could not boot $appId: " . $e->getMessage(), [ |
|
185 | + $this->logger->emergency("Could not boot $appId: ".$e->getMessage(), [ |
|
186 | 186 | 'exception' => $e, |
187 | 187 | ]); |
188 | 188 | } |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | |
191 | 191 | public function isBootable(string $appId) { |
192 | 192 | $appNameSpace = App::buildAppNamespace($appId); |
193 | - $applicationClassName = $appNameSpace . '\\AppInfo\\Application'; |
|
193 | + $applicationClassName = $appNameSpace.'\\AppInfo\\Application'; |
|
194 | 194 | return class_exists($applicationClassName) && |
195 | 195 | in_array(IBootstrap::class, class_implements($applicationClassName), true); |
196 | 196 | } |