Make WordPress Core


Ignore:
Timestamp:
09/03/2015 03:32:54 AM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add a missing file header to wp-includes/class-wp-http-streams.php, introduced in [33748].

Also clarifies the class DocBlock summary for WP_Http_Streams to better describe its purpose.

See #33413. See #33701.

File:
1 edited

Legend:

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

    r33748 r33878  
    11<?php
    22/**
    3  * HTTP request method uses PHP Streams to retrieve the url.
     3 * HTTP API: WP_Http_Streams object class
     4 *
     5 * @package WordPress
     6 * @subpackage HTTP
     7 * @since 4.4.0
     8 */
     9
     10/**
     11 * Core class used to integrate PHP Streams as an HTTP transport.
    412 *
    513 * @since 2.7.0
    6  * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client().
     14 * @since 3.7.0 Combined with the fsockopen transport and switched to `stream_socket_client()`.
    715 */
    816class WP_Http_Streams {
Note: See TracChangeset for help on using the changeset viewer.