mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Revert "adding class property docblocks"
This reverts commit dd20abf02a
.
This commit is contained in:
parent
dd20abf02a
commit
e2dafd3473
1 changed files with 3 additions and 11 deletions
|
@ -40,21 +40,13 @@ License:
|
||||||
class PluginName {
|
class PluginName {
|
||||||
|
|
||||||
/*--------------------------------------------*
|
/*--------------------------------------------*
|
||||||
* Properties
|
* Attributes
|
||||||
*--------------------------------------------*/
|
*--------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/** 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;
|
||||||
|
|
||||||
/*--------------------------------------------*
|
/*--------------------------------------------*
|
||||||
|
|
Loading…
Reference in a new issue