Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Schema/Request/GetPromptRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
final class GetPromptRequest extends Request
{
/**
* @param string $name the name of the prompt to get
* @param array<string, mixed>|null $arguments the arguments to pass to the prompt
* @param string $name the name of the prompt to get
* @param array<string, string>|null $arguments the arguments to pass to the prompt
*/
public function __construct(
public readonly string $name,
Expand Down Expand Up @@ -56,7 +56,7 @@ protected static function fromParams(?array $params): static
}

/**
* @return array{name: string, arguments?: array<string, mixed>}
* @return array{name: string, arguments?: array<string, string>}
*/
protected function getParams(): array
{
Expand Down