@@ -347,7 +347,7 @@ public function request( $url, $args = array() ) {
347347 $ options ['max_bytes ' ] = $ parsed_args ['limit_response_size ' ];
348348 }
349349
350- // If we've got cookies, use and convert them to Requests_Cookie .
350+ // If we've got cookies, use and convert them to WpOrg\Requests\Cookie .
351351 if ( ! empty ( $ parsed_args ['cookies ' ] ) ) {
352352 $ options ['cookies ' ] = WP_Http::normalize_cookies ( $ parsed_args ['cookies ' ] );
353353 }
@@ -453,7 +453,7 @@ public function request( $url, $args = array() ) {
453453 * @since 4.6.0
454454 *
455455 * @param array $cookies Array of cookies to send with the request.
456- * @return Requests_Cookie_Jar Cookie holder object.
456+ * @return WpOrg\Requests\Cookie\Jar Cookie holder object.
457457 */
458458 public static function normalize_cookies ( $ cookies ) {
459459 $ cookie_jar = new WpOrg \Requests \Cookie \Jar ();
@@ -484,11 +484,11 @@ static function( $attr ) {
484484 *
485485 * @since 4.6.0
486486 *
487- * @param string $location URL to redirect to.
488- * @param array $headers Headers for the redirect.
489- * @param string|array $data Body to send with the request.
490- * @param array $options Redirect request options.
491- * @param Requests_Response $original Response object.
487+ * @param string $location URL to redirect to.
488+ * @param array $headers Headers for the redirect.
489+ * @param string|array $data Body to send with the request.
490+ * @param array $options Redirect request options.
491+ * @param WpOrg\Requests\Response $original Response object.
492492 */
493493 public static function browser_redirect_compatibility ( $ location , $ headers , $ data , &$ options , $ original ) {
494494 // Browser compatibility.
@@ -502,7 +502,7 @@ public static function browser_redirect_compatibility( $location, $headers, $dat
502502 *
503503 * @since 4.7.5
504504 *
505- * @throws Requests_Exception On unsuccessful URL validation.
505+ * @throws WpOrg\Requests\Exception On unsuccessful URL validation.
506506 * @param string $location URL to redirect to.
507507 */
508508 public static function validate_redirects ( $ location ) {
0 commit comments