From 55e32b3103e296cfaf3b8fe0d642cf0982084cb8 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Wed, 12 Jun 2024 12:04:05 +0100 Subject: [PATCH] Issue #3450567 by kalpanajaiswal, joachim: GenerateTheme::__construct() does not document its parameters --- core/lib/Drupal/Core/Command/GenerateTheme.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/Command/GenerateTheme.php b/core/lib/Drupal/Core/Command/GenerateTheme.php index 121775fdda33..89540768d28d 100644 --- a/core/lib/Drupal/Core/Command/GenerateTheme.php +++ b/core/lib/Drupal/Core/Command/GenerateTheme.php @@ -37,7 +37,12 @@ class GenerateTheme extends Command { private $root; /** - * {@inheritdoc} + * GenerateTheme constructor. + * + * @param string|null $name + * The name of the command; passing null means it must be set in configure(). + * @param string|null $root + * The path for the Drupal root. */ public function __construct(?string $name = NULL, ?string $root = NULL) { parent::__construct($name); -- GitLab