Skip to content
Snippets Groups Projects

Fix Too few arguments Issue.

1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
+ 5
1
@@ -52,7 +52,11 @@ class SettingsForm extends ConfigFormBase {
* {@inheritdoc}
*/
public static function create(ContainerInterface $container): self {
return new static($container->get('config.factory'), $container->get('entity_type.manager'));
return new static(
$container->get('config.factory'),
$container->get('config.typed'),
$container->get('entity_type.manager')
);
}
/**
Loading