- Issue created by @gge
- 🇷🇴Romania gge
For me the error is gone by adding
use Drupal\Core\Config\TypedConfigManagerInterface;
to theuse
statements and changing the constructor from:public function __construct(ConfigFactoryInterface $config_factory) { parent::__construct($config_factory);
to
public function __construct(ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager) { parent::__construct($config_factory, $typed_config_manager);
- 🇧🇪Belgium andreasderijcke Antwerpen / Gent
Had fix already in dev branch, just didn't come around to release it. Will use this to do it now.
- Assigned to andreasderijcke
- 🇧🇪Belgium andreasderijcke Antwerpen / Gent
andreasderijcke → changed the visibility of the branch 3474344-argumentcounterror-too-few to hidden.
-
andreasderijcke →
committed f2daacdb on 1.0.x authored by
gge →
git commit -m 'Issue #3474344 by gge, andreasderijcke:...
-
andreasderijcke →
committed f2daacdb on 1.0.x authored by
gge →
- Issue was unassigned.
- Status changed to Fixed
2 months ago 10:33am 14 September 2024 - Status changed to Fixed
2 months ago 10:47am 14 September 2024 - 🇧🇪Belgium andreasderijcke Antwerpen / Gent
Voila, released. Thank you for the nudge.