From 2aa0a42661993f7d8dc8aa59c7db127e9a628f6d Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Wed, 26 Aug 2015 07:45:21 +0000 Subject: [PATCH] Docs: Add a file header to wp-includes/class-wp-widget.php, created when the `WP_Widget` 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. Built from https://develop.svn.wordpress.org/trunk@33755 git-svn-id: http://core.svn.wordpress.org/trunk@33723 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-widget.php | 13 +++++++++++-- wp-includes/version.php | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-widget.php b/wp-includes/class-wp-widget.php index 71fe9ffa71..ce3288f621 100644 --- a/wp-includes/class-wp-widget.php +++ b/wp-includes/class-wp-widget.php @@ -1,11 +1,20 @@