Skip to content
Snippets Groups Projects
Commit 56541456 authored by snater's avatar snater
Browse files

Issue #3499306 by stevechai: TypedConfigManagerInterface required for Drupal 11

parent 7cdd73ee
Branches 3.x
Tags 3.0.2
No related merge requests found
......@@ -2,6 +2,7 @@
namespace Drupal\insert\Form;
use Drupal\Core\Config\TypedConfigManagerInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Form\ConfigFormBase;
......@@ -14,8 +15,8 @@ class ConfigForm extends ConfigFormBase {
/**
* @inheritdoc
*/
public function __construct(ConfigFactoryInterface $config_factory) {
parent::__construct($config_factory);
public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager) {
parent::__construct($config_factory, $typed_config_manager);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment