Docs: Add a missing file header for wp-includes/class-http.php.
Also clarifies the class DocBlock summary for `WP_Http` to more clearly describe its purpose. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@33880 git-svn-id: http://core.svn.wordpress.org/trunk@33849 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
05ec4d2029
commit
853fd32e88
|
@ -1,6 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* WordPress HTTP Class for managing HTTP Transports and making HTTP requests.
|
* HTTP API: WP_Http object class
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage HTTP
|
||||||
|
* @since 2.7.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Core class used for managing HTTP transports and making HTTP requests.
|
||||||
*
|
*
|
||||||
* This class is used to consistently make outgoing HTTP requests easy for developers
|
* This class is used to consistently make outgoing HTTP requests easy for developers
|
||||||
* while still being compatible with the many PHP configurations under which
|
* while still being compatible with the many PHP configurations under which
|
||||||
|
@ -8,8 +16,6 @@
|
||||||
*
|
*
|
||||||
* Debugging includes several actions, which pass different variables for debugging the HTTP API.
|
* Debugging includes several actions, which pass different variables for debugging the HTTP API.
|
||||||
*
|
*
|
||||||
* @package WordPress
|
|
||||||
* @subpackage HTTP
|
|
||||||
* @since 2.7.0
|
* @since 2.7.0
|
||||||
*/
|
*/
|
||||||
class WP_Http {
|
class WP_Http {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-33879';
|
$wp_version = '4.4-alpha-33880';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue