adding class property docblocks

fixes #35
This commit is contained in:
Tom McFarlin 2013-05-09 21:37:03 -04:00
parent e2dafd3473
commit cd1f367899
1 changed files with 11 additions and 3 deletions

View File

@ -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;
/*--------------------------------------------*