From e2dafd347331e296b13f50dd043539af752104ba Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Thu, 9 May 2013 21:36:44 -0400 Subject: [PATCH] Revert "adding class property docblocks" This reverts commit dd20abf02ad4336c25efb97cfff1cc1c1341baf6. --- plugin-boilerplate/plugin.php | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/plugin-boilerplate/plugin.php b/plugin-boilerplate/plugin.php index 139c3b9..e92c281 100644 --- a/plugin-boilerplate/plugin.php +++ b/plugin-boilerplate/plugin.php @@ -40,21 +40,13 @@ License: class PluginName { /*--------------------------------------------* - * Properties + * Attributes *--------------------------------------------*/ - /** - * Refers to a single instance of this class. - * @access private - * @var object - */ + /** Refers to a single instance of this class. */ private static $instance = null; - /** - * Refers to the slug of the plugin screen. - * @access private - * @var string - */ + /** Refers to the slug of the plugin screen. */ private $plugin_screen_slug = null; /*--------------------------------------------*