update phpdoc to hilight return of WP_Error objects on failures. See #8620.

git-svn-id: https://develop.svn.wordpress.org/trunk@10359 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2009-01-14 21:40:41 +00:00
parent bdf9472e38
commit b646d66c7e
1 changed files with 4 additions and 4 deletions

View File

@ -1141,7 +1141,7 @@ function &_wp_http_get_object() {
*
* @param string $url Site URL to retrieve.
* @param array $args Optional. Override the defaults.
* @return string The body of the response
* @return WP_Error|string The body of the response or WP_Error on failure.
*/
function wp_remote_request($url, $args = array()) {
$objFetchSite = _wp_http_get_object();
@ -1157,7 +1157,7 @@ function wp_remote_request($url, $args = array()) {
*
* @param string $url Site URL to retrieve.
* @param array $args Optional. Override the defaults.
* @return string The body of the response
* @return WP_Error|string The body of the response or WP_Error on failure.
*/
function wp_remote_get($url, $args = array()) {
$objFetchSite = _wp_http_get_object();
@ -1174,7 +1174,7 @@ function wp_remote_get($url, $args = array()) {
*
* @param string $url Site URL to retrieve.
* @param array $args Optional. Override the defaults.
* @return string The body of the response
* @return WP_Error|string The body of the response or WP_Error on failure.
*/
function wp_remote_post($url, $args = array()) {
$objFetchSite = _wp_http_get_object();
@ -1190,7 +1190,7 @@ function wp_remote_post($url, $args = array()) {
*
* @param string $url Site URL to retrieve.
* @param array $args Optional. Override the defaults.
* @return string The body of the response
* @return WP_Error|string The body of the response or WP_Error on failure.
*/
function wp_remote_head($url, $args = array()) {
$objFetchSite = _wp_http_get_object();