1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-01 19:03:15 +03:00

adding class property docblocks

This commit is contained in:
Tom McFarlin 2013-05-09 21:36:32 -04:00
parent 0fd7ce4344
commit dd20abf02a

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