Docs: Add missing file headers to two Toolbar API files: wp-includes/admin-bar.php and wp-includes/class-wp-admin-bar.php.

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@35157 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-10-14 17:26:28 +00:00
parent 224efdf892
commit 5ffe8f5aef
2 changed files with 12 additions and 5 deletions

View File

@ -1,8 +1,10 @@
<?php
/**
* Admin Bar
* Toolbar API: Top-level Toolbar functionality
*
* This code handles the building and rendering of the press bar.
* @package WordPress
* @subpackage Toolbar
* @since 3.1.0
*/
/**

View File

@ -1,11 +1,16 @@
<?php
/**
* The WordPress Toolbar
*
* @since 3.1.0
* Toolbar API: WP_Admin_Bar class
*
* @package WordPress
* @subpackage Toolbar
* @since 3.1.0
*/
/**
* Core class used to implement the Toolbar API.
*
* @since 3.1.0
*/
class WP_Admin_Bar {
private $nodes = array();