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.

Built from https://develop.svn.wordpress.org/trunk@33878


git-svn-id: http://core.svn.wordpress.org/trunk@33846 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-09-03 03:33:21 +00:00
parent b9ef409823
commit d948d8e104
2 changed files with 11 additions and 3 deletions

View File

@ -1,9 +1,17 @@
<?php <?php
/** /**
* HTTP request method uses PHP Streams to retrieve the url. * HTTP API: WP_Http_Streams object class
*
* @package WordPress
* @subpackage HTTP
* @since 4.4.0
*/
/**
* Core class used to integrate PHP Streams as an HTTP transport.
* *
* @since 2.7.0 * @since 2.7.0
* @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client(). * @since 3.7.0 Combined with the fsockopen transport and switched to `stream_socket_client()`.
*/ */
class WP_Http_Streams { class WP_Http_Streams {
/** /**

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.4-alpha-33876'; $wp_version = '4.4-alpha-33878';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.