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