diff --git a/core/lib/Drupal/Core/CoreServiceProvider.php b/core/lib/Drupal/Core/CoreServiceProvider.php index 8eb1ec9139..e2f10326d9 100644 --- a/core/lib/Drupal/Core/CoreServiceProvider.php +++ b/core/lib/Drupal/Core/CoreServiceProvider.php @@ -53,6 +53,9 @@ public function register(ContainerBuilder $container) { ->addTag('stream_wrapper', ['scheme' => 'private']); } + // Register the Entity WizardFormController. + $container->register('entity.wizard', 'Drupal\Core\Wizard\WizardFormController'); + // Add the compiler pass that lets service providers modify existing // service definitions. This pass must come first so that later // list-building passes are operating on the post-alter services list.