Docs: Add a file header to wp-includes/class-wp-roles.php, introduced in [33752].

Also adjusts the class DocBlock for `WP_Roles`.

See #33413. See #33701.


git-svn-id: https://develop.svn.wordpress.org/trunk@34394 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-09-22 12:53:15 +00:00
parent aabead83e6
commit 9745959dc8

View File

@ -1,6 +1,14 @@
<?php
/**
* WordPress User Roles.
* User API: WP_Roles class
*
* @package WordPress
* @subpackage User
* @since 4.4.0
*/
/**
* Core class used to implement a user roles API.
*
* The role option is simple, the structure is organized by role name that store
* the name in value of the 'name' key. The capabilities are stored as an array
@ -14,8 +22,6 @@
* )
*
* @since 2.0.0
* @package WordPress
* @subpackage User
*/
class WP_Roles {
/**