Skip to content

Commit

Permalink
プラグインのルーティングが読み込めない不具合を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
chihiro-adachi committed Jan 17, 2024
1 parent 215b809 commit 196b582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected function configureRoutes(RoutingConfigurator $routes)
foreach ($plugins as $plugin) {
$dir = $pluginDir.'/'.$plugin.'/Controller';
if (file_exists($dir)) {
$builder = $routes->import($dir, '/', 'annotation');
$builder = $routes->import($dir,'annotation');
$builder->schemes($scheme);
}
if (file_exists($pluginDir.'/'.$plugin.'/Resource/config')) {
Expand Down

0 comments on commit 196b582

Please sign in to comment.