Make WordPress Core

Changeset 25309


Ignore:
Timestamp:
09/09/2013 08:09:20 AM (11 years ago)
Author:
dd32
Message:

WP_HTTP: Correct the @since, and, @deprecated PHPDoc tags to reflect the class history. See #25007

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-http.php

    r25303 r25309  
    667667 * @package WordPress
    668668 * @subpackage HTTP
    669  * @since 3.7.0
     669 *
     670 * @since 2.7.0
     671 * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client().
    670672 */
    671673class WP_Http_Streams {
     
    675677     * @see WP_Http::request For default options descriptions.
    676678     *
    677      * @since 3.7.0
     679     * @since 2.7.0
     680     * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client().
     681     *
    678682     * @access public
    679683     * @param string $url URI resource.
     
    9991003     * @static
    10001004     * @access public
    1001      * @since 3.7.0
     1005     * @since 2.7.0
     1006     * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client().
    10021007     *
    10031008     * @return boolean False means this class can not be used, true means it can.
     
    10221027/**
    10231028 * Deprecated HTTP Transport method which used fsockopen.
     1029 *
    10241030 * This class is not used, and is included for backwards compatibility only.
    10251031 * All code should make use of WP_HTTP directly through it's API.
     
    10291035 * @package WordPress
    10301036 * @subpackage HTTP
    1031  * @since 3.7.0
     1037 *
     1038 * @since 2.7.0
     1039 * @deprecated 3.7.0 Please use WP_HTTP::request() directly
    10321040 */
    10331041class WP_HTTP_Fsockopen extends WP_HTTP_Streams {
Note: See TracChangeset for help on using the changeset viewer.