1
0
Fork 0
mirror of https://github.com/inretio/WordPress-Plugin-Boilerplate synced 2024-05-05 04:43:14 +03:00

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

View file

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