From 5f8dbab63bcbe6a7601bb379455445db978ae5c0 Mon Sep 17 00:00:00 2001 From: Tom McFarlin Date: Fri, 10 May 2013 07:34:45 -0400 Subject: [PATCH] changing the access modifiers to `protected` from `private` Related #36 --- plugin-boilerplate/plugin-boilerplate.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin-boilerplate/plugin-boilerplate.php b/plugin-boilerplate/plugin-boilerplate.php index 28601d0..0998080 100644 --- a/plugin-boilerplate/plugin-boilerplate.php +++ b/plugin-boilerplate/plugin-boilerplate.php @@ -65,14 +65,14 @@ class PluginName { * * @var object */ - private static $instance = null; + protected static $instance = null; /** * Refers to the slug of the plugin screen. * * @var string */ - private $plugin_screen_slug = null; + protected $plugin_screen_slug = null; /*--------------------------------------------* * Constructor