Docs: Add a file header to wp-includes/class-wp-role.php, introduced in [33752].
Also adjusts the class DocBlock for `WP_Role`. See #33413. See #33701. Built from https://develop.svn.wordpress.org/trunk@34395 git-svn-id: http://core.svn.wordpress.org/trunk@34359 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
4d9fa2d7d2
commit
521d39b629
|
@ -1,10 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* WordPress Role class.
|
||||
* User API: WP_Role class
|
||||
*
|
||||
* @since 2.0.0
|
||||
* @package WordPress
|
||||
* @subpackage User
|
||||
* @since 4.4.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Core class used to extend the user roles API.
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
class WP_Role {
|
||||
/**
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34394';
|
||||
$wp_version = '4.4-alpha-34395';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue