mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-02 00:00:15 +00:00
Docs: Remove @static notations from property DocBlocks in wp-admin/* and wp-includes/* classes.
This tag has been used in the past, but should no longer be used. Just using the `static` keyword in code is enough for PhpDocumentor on PHP5+ to recognize static variables and methods, and PhpDocumentor will mark them as static. Props birgire. See #42803. git-svn-id: https://develop.svn.wordpress.org/trunk@42747 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -21,7 +21,6 @@ final class WP_Theme implements ArrayAccess {
|
||||
/**
|
||||
* Headers for style.css files.
|
||||
*
|
||||
* @static
|
||||
* @var array
|
||||
*/
|
||||
private static $file_headers = array(
|
||||
@@ -41,7 +40,6 @@ final class WP_Theme implements ArrayAccess {
|
||||
/**
|
||||
* Default themes.
|
||||
*
|
||||
* @static
|
||||
* @var array
|
||||
*/
|
||||
private static $default_themes = array(
|
||||
@@ -60,7 +58,6 @@ final class WP_Theme implements ArrayAccess {
|
||||
/**
|
||||
* Renamed theme tags.
|
||||
*
|
||||
* @static
|
||||
* @var array
|
||||
*/
|
||||
private static $tag_map = array(
|
||||
@@ -158,7 +155,6 @@ final class WP_Theme implements ArrayAccess {
|
||||
*
|
||||
* Default is false. Can be set with the {@see 'wp_cache_themes_persistently'} filter.
|
||||
*
|
||||
* @static
|
||||
* @var bool
|
||||
*/
|
||||
private static $persistently_cache;
|
||||
@@ -168,7 +164,6 @@ final class WP_Theme implements ArrayAccess {
|
||||
*
|
||||
* By default the bucket is not cached, so this value is useless.
|
||||
*
|
||||
* @static
|
||||
* @var bool
|
||||
*/
|
||||
private static $cache_expiration = 1800;
|
||||
|
||||
Reference in New Issue
Block a user