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

changing the access modifiers to protected from private

Related #36
This commit is contained in:
Tom McFarlin 2013-05-10 07:34:45 -04:00
parent 3be46accea
commit 5f8dbab63b

View file

@ -65,14 +65,14 @@ class PluginName {
* *
* @var object * @var object
*/ */
private static $instance = null; protected static $instance = null;
/** /**
* Refers to the slug of the plugin screen. * Refers to the slug of the plugin screen.
* *
* @var string * @var string
*/ */
private $plugin_screen_slug = null; protected $plugin_screen_slug = null;
/*--------------------------------------------* /*--------------------------------------------*
* Constructor * Constructor