@@ -33,7 +33,6 @@ |
||
33 | 33 | use Eccube\Entity\Plugin; |
34 | 34 | use Eccube\Entity\PluginEventHandler; |
35 | 35 | use Eccube\Exception\PluginException; |
36 | -use Eccube\Plugin\ConfigManager; |
|
37 | 36 | use Eccube\Plugin\ConfigManager as PluginConfigManager; |
38 | 37 | use Eccube\Repository\PluginEventHandlerRepository; |
39 | 38 | use Eccube\Repository\PluginRepository; |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | try { |
275 | 275 | $this->composerService->execRequire($packageNames); |
276 | 276 | // Do report to package repo |
277 | - $url = $this->appConfig['package_repo_url'] . '/report'; |
|
277 | + $url = $this->appConfig['package_repo_url'].'/report'; |
|
278 | 278 | $this->postRequestApi($url, $data); |
279 | 279 | $app->addSuccess('admin.plugin.install.complete', 'admin'); |
280 | 280 | |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | } |
285 | 285 | |
286 | 286 | // Do report to package repo |
287 | - $url = $this->appConfig['package_repo_url'] . '/report/fail'; |
|
287 | + $url = $this->appConfig['package_repo_url'].'/report/fail'; |
|
288 | 288 | $this->postRequestApi($url, $data); |
289 | 289 | $app->addError('admin.plugin.install.fail', 'admin'); |
290 | 290 |