mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
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:
parent
b9ef409823
commit
d948d8e104
@ -1,9 +1,17 @@
|
||||
<?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 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 {
|
||||
/**
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @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.
|
||||
|
Loading…
Reference in New Issue
Block a user