Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
0504dd94
Commit
0504dd94
authored
9 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
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
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/modules/config/src/Form/ConfigSync.php
+3
-3
3 additions, 3 deletions
core/modules/config/src/Form/ConfigSync.php
with
3 additions
and
3 deletions
core/modules/config/src/Form/ConfigSync.php
+
3
−
3
View file @
0504dd94
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment