Skip to content

Commit

Permalink
PHP7.4 での notice 修正
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Apr 23, 2020
1 parent 538c144 commit 734d1fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Eccube/DependencyInjection/EccubeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ protected function configurePlugins(ContainerBuilder $container)

$enabled = [];
foreach ($plugins as $plugin) {
if ($plugin['enabled']) {
if (array_key_exists('enabled', $plugin) && $plugin['enabled']) {
$enabled[] = $plugin['code'];
}
}
Expand Down

0 comments on commit 734d1fd

Please sign in to comment.