Docs: Bring the file header and class DocBlock summaries for class-wp-widget.php in-line with the intention of the docs standard:

* File headers: _What_ the file is
* Class DocBlocks: What purpose the class serves. Mentioning the class name in the class DocBlock is redundant

See #33413

Built from https://develop.svn.wordpress.org/trunk@33816


git-svn-id: http://core.svn.wordpress.org/trunk@33784 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-08-30 23:14:21 +00:00
parent 1e9372b699
commit 4d006fad9e
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php
/**
* Class file for WP_Widget
* WP_Widget class, base class for creating widgets
*
* @package WordPress
* @subpackage Widgets
@ -8,7 +8,7 @@
*/
/**
* WP_Widget class.
* Class extended to register widgets for the core Widgets API.
*
* This class must be extended for each widget and WP_Widget::widget(), WP_Widget::update()
* and WP_Widget::form() need to be overridden.

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-33815';
$wp_version = '4.4-alpha-33816';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.