wp/wp-includes/class-wp-http-requests-response.php
changeset 16 a86126ab1dd4
parent 9 177826044cd9
child 21 48c4eec2b7e6
--- a/wp/wp-includes/class-wp-http-requests-response.php	Tue Oct 22 16:11:46 2019 +0200
+++ b/wp/wp-includes/class-wp-http-requests-response.php	Tue Dec 15 13:49:49 2020 +0100
@@ -60,8 +60,6 @@
 	 *
 	 * @since 4.6.0
 	 *
-	 * @see \Requests_Utility_CaseInsensitiveDictionary
-	 *
 	 * @return \Requests_Utility_CaseInsensitiveDictionary Map of header name to header value.
 	 */
 	public function get_headers() {
@@ -135,7 +133,7 @@
 	 *
 	 * @since 4.6.0
 	 *
-	 * @return mixed Response data.
+	 * @return string Response data.
 	 */
 	public function get_data() {
 		return $this->response->body;
@@ -146,7 +144,7 @@
 	 *
 	 * @since 4.6.0
 	 *
-	 * @param mixed $data Response data.
+	 * @param string $data Response data.
 	 */
 	public function set_data( $data ) {
 		$this->response->body = $data;