mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 11:53:53 +02:00
adding class property docblocks
This commit is contained in:
parent
0fd7ce4344
commit
dd20abf02a
1 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
|
||||
/*--------------------------------------------*
|
||||
|
|
Loading…
Reference in a new issue