From cd1f3678992120ba2a1439047992f2c61753cba3 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Thu, 9 May 2013 21:37:03 -0400 Subject: [PATCH] adding class property docblocks fixes #35 --- 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; /*--------------------------------------------*