Skip to content
Snippets Groups Projects
Commit 41c64026 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #1978976 followup by lussoluca: Convert shortcut_set_switch to a Controller.

parent fea90901
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
namespace Drupal\shortcut; namespace Drupal\shortcut;
use Drupal\Component\Uuid\UuidInterface; use Drupal\Component\Uuid\UuidInterface;
use Drupal\Core\Config\ConfigFactory; use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Config\Entity\ConfigEntityStorage; use Drupal\Core\Config\Entity\ConfigEntityStorage;
use Drupal\Core\Config\StorageInterface; use Drupal\Core\Config\StorageInterface;
use Drupal\Core\Entity\EntityTypeInterface; use Drupal\Core\Entity\EntityTypeInterface;
...@@ -34,7 +34,7 @@ class ShortcutSetStorage extends ConfigEntityStorage implements ShortcutSetStora ...@@ -34,7 +34,7 @@ class ShortcutSetStorage extends ConfigEntityStorage implements ShortcutSetStora
* *
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_info * @param \Drupal\Core\Entity\EntityTypeInterface $entity_info
* The entity info for the entity type. * The entity info for the entity type.
* @param \Drupal\Core\Config\ConfigFactory $config_factory * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory service. * The config factory service.
* @param \Drupal\Core\Config\StorageInterface $config_storage * @param \Drupal\Core\Config\StorageInterface $config_storage
* The config storage service. * The config storage service.
...@@ -45,7 +45,7 @@ class ShortcutSetStorage extends ConfigEntityStorage implements ShortcutSetStora ...@@ -45,7 +45,7 @@ class ShortcutSetStorage extends ConfigEntityStorage implements ShortcutSetStora
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager. * The language manager.
*/ */
public function __construct(EntityTypeInterface $entity_info, ConfigFactory $config_factory, StorageInterface $config_storage, UuidInterface $uuid_service, ModuleHandlerInterface $module_handler, LanguageManagerInterface $language_manager) { public function __construct(EntityTypeInterface $entity_info, ConfigFactoryInterface $config_factory, StorageInterface $config_storage, UuidInterface $uuid_service, ModuleHandlerInterface $module_handler, LanguageManagerInterface $language_manager) {
parent::__construct($entity_info, $config_factory, $config_storage, $uuid_service, $language_manager); parent::__construct($entity_info, $config_factory, $config_storage, $uuid_service, $language_manager);
$this->moduleHandler = $module_handler; $this->moduleHandler = $module_handler;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment