Docs: Add a missing file header for wp-includes/class-wp-http-encoding.php, introduced in [33748].
Also clarifies the class DocBlock summary for `WP_Http_Encoding`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@33875 git-svn-id: http://core.svn.wordpress.org/trunk@33843 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
378d3e0f8d
commit
f7ba27390c
|
@ -1,12 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Implementation for deflate and gzip transfer encodings.
|
* HTTP API: WP_Http_Encoding class
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage HTTP
|
||||||
|
* @since 4.4.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Core class used to implement deflate and gzip transfer encoding support for HTTP requests.
|
||||||
*
|
*
|
||||||
* Includes RFC 1950, RFC 1951, and RFC 1952.
|
* Includes RFC 1950, RFC 1951, and RFC 1952.
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
* @package WordPress
|
|
||||||
* @subpackage HTTP
|
|
||||||
*/
|
*/
|
||||||
class WP_Http_Encoding {
|
class WP_Http_Encoding {
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-33874';
|
$wp_version = '4.4-alpha-33875';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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