Skip to content

Commit

Permalink
fix modulesettings instantiation missing a parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
FC-NilsBaczynski authored Oct 6, 2023
1 parent e4f8d25 commit 4c2f577
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Core/Events/Events.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,13 @@ private static function getModuleSettingsService(): ModuleSettings
$context = $container->get(ContextInterface::class);
/** @var ModuleConfigurationDaoBridgeInterface $moduleConfigurationDaoBridgeInterface */
$moduleConfigurationDaoBridgeInterface = $container->get(ModuleConfigurationDaoBridgeInterface::class);
$logger = $container->get('OxidSolutionCatalysts\PayPal\Logger');

return new ModuleSettings(
$moduleSettingsBridge,
$context,
$moduleConfigurationDaoBridgeInterface
$moduleConfigurationDaoBridgeInterface,
$logger
);
}
}

0 comments on commit 4c2f577

Please sign in to comment.