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

Issue #1810002 by Mile23, piyuesh23: Add missing type hinting to Config module docblocks

parent 91504462
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
...@@ -118,11 +118,11 @@ class ConfigSync extends FormBase { ...@@ -118,11 +118,11 @@ class ConfigSync extends FormBase {
* @param \Drupal\Core\Config\TypedConfigManagerInterface $typed_config * @param \Drupal\Core\Config\TypedConfigManagerInterface $typed_config
* The typed configuration manager. * The typed configuration manager.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler * The module handler.
* @param \Drupal\Core\Extension\ModuleInstallerInterface $module_installer * @param \Drupal\Core\Extension\ModuleInstallerInterface $module_installer
* The module installer. * The module installer.
* @param \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler * @param \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler
* The theme handler * The theme handler.
*/ */
public function __construct(StorageInterface $staging_storage, StorageInterface $active_storage, StorageInterface $snapshot_storage, LockBackendInterface $lock, EventDispatcherInterface $event_dispatcher, ConfigManagerInterface $config_manager, TypedConfigManagerInterface $typed_config, ModuleHandlerInterface $module_handler, ModuleInstallerInterface $module_installer, ThemeHandlerInterface $theme_handler) { public function __construct(StorageInterface $staging_storage, StorageInterface $active_storage, StorageInterface $snapshot_storage, LockBackendInterface $lock, EventDispatcherInterface $event_dispatcher, ConfigManagerInterface $config_manager, TypedConfigManagerInterface $typed_config, ModuleHandlerInterface $module_handler, ModuleInstallerInterface $module_installer, ThemeHandlerInterface $theme_handler) {
$this->stagingStorage = $staging_storage; $this->stagingStorage = $staging_storage;
...@@ -356,7 +356,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) { ...@@ -356,7 +356,7 @@ public function submitForm(array &$form, FormStateInterface $form_state) {
* The batch config importer object to persist. * The batch config importer object to persist.
* @param string $sync_step * @param string $sync_step
* The synchronization step to do. * The synchronization step to do.
* @param $context * @param array $context
* The batch context. * The batch context.
*/ */
public static function processBatch(ConfigImporter $config_importer, $sync_step, &$context) { public static function processBatch(ConfigImporter $config_importer, $sync_step, &$context) {
......
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