diff --git a/core/lib/Drupal/Core/Theme/Registry.php b/core/lib/Drupal/Core/Theme/Registry.php index c7149be..ac00675 100644 --- a/core/lib/Drupal/Core/Theme/Registry.php +++ b/core/lib/Drupal/Core/Theme/Registry.php @@ -155,10 +155,10 @@ class Registry implements DestructableInterface { * The lock backend. * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler * The module handler to use to load modules. + * @param \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler + * The theme handler. * @param string $theme_name * (optional) The name of the theme for which to construct the registry. - * @param $theme_handler - * The theme handler. */ public function __construct($root, CacheBackendInterface $cache, LockBackendInterface $lock, ModuleHandlerInterface $module_handler, ThemeHandlerInterface $theme_handler, $theme_name = NULL) { $this->root = $root; diff --git a/core/modules/block_content/src/Controller/BlockContentController.php b/core/modules/block_content/src/Controller/BlockContentController.php index 855250a..6e2bd43 100644 --- a/core/modules/block_content/src/Controller/BlockContentController.php +++ b/core/modules/block_content/src/Controller/BlockContentController.php @@ -58,7 +58,7 @@ public static function create(ContainerInterface $container) { * @param \Drupal\Core\Entity\EntityStorageInterface $block_content_type_storage * The custom block type storage. * @param \Drupal\Core\Extension\ThemeHandlerInterface $theme_handler - * The theme handler. + * The theme handler. */ public function __construct(EntityStorageInterface $block_content_storage, EntityStorageInterface $block_content_type_storage, ThemeHandlerInterface $theme_handler) { $this->blockContentStorage = $block_content_storage;