From c2965b397b33533a70b27a90e8242afef77375ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20D=C4=9Bdi=C4=8D?= Date: Tue, 24 Mar 2020 01:19:55 +0100 Subject: [PATCH] wp_remote_retrieve_body() --- stubs/WordPress/functions.php | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/stubs/WordPress/functions.php b/stubs/WordPress/functions.php index 0a3bbef..f275a54 100644 --- a/stubs/WordPress/functions.php +++ b/stubs/WordPress/functions.php @@ -975,7 +975,21 @@ function wp_remote_get( $url, $args = array() ) { } /** - * @param WP_Error|array $response + * @param WP_Error|array $response { + * @type string $body + * } + * + * @return string + */ +function wp_remote_retrieve_body( $response ) { +} + +/** + * @param WP_Error|array $response { + * @type array $response { + * @type int $code + * } + * } * * @return int|string */