Revert "adding class property docblocks"

This reverts commit dd20abf02a.
This commit is contained in:
Tom McFarlin 2013-05-09 21:36:44 -04:00
parent dd20abf02a
commit e2dafd3473
1 changed files with 3 additions and 11 deletions

View File

@ -40,21 +40,13 @@ License:
class PluginName {
/*--------------------------------------------*
* Properties
* Attributes
*--------------------------------------------*/
/**
* Refers to a single instance of this class.
* @access private
* @var object
*/
/** Refers to a single instance of this class. */
private static $instance = null;
/**
* Refers to the slug of the plugin screen.
* @access private
* @var string
*/
/** Refers to the slug of the plugin screen. */
private $plugin_screen_slug = null;
/*--------------------------------------------*