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

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

View file

@ -40,13 +40,21 @@ License:
class PluginName { 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; 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; private $plugin_screen_slug = null;
/*--------------------------------------------* /*--------------------------------------------*