From 9832941b66f682365d4ea5b18a5b53355f6f8601 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Fri, 28 Nov 2014 09:13:31 +0000 Subject: [PATCH] 4.1 Docs Audit: Fix some line-wrapping in the DocBlock for `WP_Http::parse_url()`. See #30469. git-svn-id: https://develop.svn.wordpress.org/trunk@30604 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-http.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/wp-includes/class-http.php b/src/wp-includes/class-http.php index 32a227fd05..759b6461cb 100644 --- a/src/wp-includes/class-http.php +++ b/src/wp-includes/class-http.php @@ -676,16 +676,18 @@ class WP_Http { * A wrapper for PHP's parse_url() function that handles edgecases in < PHP 5.4.7 * * PHP 5.4.7 expanded parse_url()'s ability to handle non-absolute url's, including - * schemeless and relative url's with :// in the path, this works around those limitations - * providing a standard output on PHP 5.2~5.4+. + * schemeless and relative url's with :// in the path, this works around those + * limitations providing a standard output on PHP 5.2~5.4+. * - * Error suppression is used as prior to PHP 5.3.3, an E_WARNING would be generated when URL parsing failed. + * Error suppression is used as prior to PHP 5.3.3, an E_WARNING would be generated + * when URL parsing failed. * * @since 4.1.0 - * * @access protected - * @param string $url The URL to parse - * @return bool|array False on failure; Array of URL components on success; See parse_url()'s return values. + * + * @param string $url The URL to parse. + * @return bool|array False on failure; Array of URL components on success; + * See parse_url()'s return values. */ protected static function parse_url( $url ) { $parts = @parse_url( $url );