Make WordPress Core

Changeset 33756


Ignore:
Timestamp:
08/26/2015 07:52:05 AM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add a file header to wp-includes/class-wp-widget-factory.php, created when the WP_Widget_Factory class was moved to its own file in [33746].

It's important for every file in WordPress, regardless of makeup or architecture, to have its own file header, even if the file contains nothing but a class. When parsed, files and classes are mutually exclusive and should be documented with this in mind.

See [33746]. See #33413.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-widget-factory.php

    r33746 r33756  
    11<?php
     2/**
     3 * Class file for WP_Widget_Factory
     4 *
     5 * @package WordPress
     6 * @subpackage Widgets
     7 * @since 4.4.0
     8 */
     9
    210/**
    311 * Singleton that registers and instantiates WP_Widget classes.
    412 *
    5  * @package WordPress
    6  * @subpackage Widgets
    713 * @since 2.8.0
     14 * @since 4.4.0 Moved to its own file from wp-includes/widgets.php
    815 */
    916class WP_Widget_Factory {
Note: See TracChangeset for help on using the changeset viewer.