Issue #3501974 by matdemeue: ArgumentCountError: Too few arguments to function...
2 unresolved threads
Merge request reports
Activity
28 29 * @param \Drupal\postmark\PostmarkHandler $postmark_handler 29 30 * The core mail manager service. 30 31 */ 31 public function __construct(ConfigFactoryInterface $config_factory, PostmarkHandler $postmark_handler) { 32 parent::__construct($config_factory); 32 public function __construct(ConfigFactoryInterface $config_factory, PostmarkHandler $postmark_handler, TypedConfigManagerInterface $typed_config_manager) { 33 parent::__construct($config_factory, $typed_config_manager); changed this line in version 3 of the diff
40 41 public static function create(ContainerInterface $container) { 41 42 return new static( 42 43 $container->get('config.factory'), 43 $container->get('postmark.mail_handler') 44 $container->get('postmark.mail_handler'), 45 $container->get('config.typed') changed this line in version 3 of the diff
Please register or sign in to reply