Given: ```php @param list<string|MessagePart|array> $prompt ``` the parser returns three types: ```text \list<string \MessagePart \array> ``` Expected: `list<string|MessagePart|array>` remains one type, with aliases resolved inside the generic if applicable. [This is part of an issue with `wp_ai_client_prompt()` documentation.](https://developer.wordpress.org/reference/functions/wp_ai_client_prompt/)
Given:
@param list<string|MessagePart|array> $promptthe parser returns three types:
Expected:
list<string|MessagePart|array>remains one type, with aliases resolved inside the generic if applicable.This is part of an issue with
wp_ai_client_prompt()documentation.