From 6f2fcbac356e5ad4a1a9d7895ee8012bfe088218 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Tue, 14 Apr 2026 17:31:30 +0300 Subject: [PATCH] Fix PHPDoc type of `GetPromptRequest::$arguments` --- src/Schema/Request/GetPromptRequest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Schema/Request/GetPromptRequest.php b/src/Schema/Request/GetPromptRequest.php index bc6903f3..5d91ff55 100644 --- a/src/Schema/Request/GetPromptRequest.php +++ b/src/Schema/Request/GetPromptRequest.php @@ -22,8 +22,8 @@ final class GetPromptRequest extends Request { /** - * @param string $name the name of the prompt to get - * @param array|null $arguments the arguments to pass to the prompt + * @param string $name the name of the prompt to get + * @param array|null $arguments the arguments to pass to the prompt */ public function __construct( public readonly string $name, @@ -56,7 +56,7 @@ protected static function fromParams(?array $params): static } /** - * @return array{name: string, arguments?: array} + * @return array{name: string, arguments?: array} */ protected function getParams(): array {