adjust property visibility
parent
555c9e2b06
commit
d8c676a249
|
@ -31,7 +31,7 @@ use files;
|
||||||
*/
|
*/
|
||||||
class Admin
|
class Admin
|
||||||
{
|
{
|
||||||
private static $init = false;
|
protected static $init = false;
|
||||||
|
|
||||||
public static function init(): bool
|
public static function init(): bool
|
||||||
{
|
{
|
||||||
|
|
|
@ -31,7 +31,7 @@ use Exception;
|
||||||
*/
|
*/
|
||||||
class Config
|
class Config
|
||||||
{
|
{
|
||||||
private static $init = false;
|
protected static $init = false;
|
||||||
|
|
||||||
public static function init(): bool
|
public static function init(): bool
|
||||||
{
|
{
|
||||||
|
|
|
@ -37,7 +37,7 @@ class Install
|
||||||
]];
|
]];
|
||||||
|
|
||||||
// Nothing to change below
|
// Nothing to change below
|
||||||
private static $init = false;
|
protected static $init = false;
|
||||||
|
|
||||||
public static function init(): bool
|
public static function init(): bool
|
||||||
{
|
{
|
||||||
|
|
|
@ -45,7 +45,7 @@ class Manage
|
||||||
/** @var Action|null $action Current action module */
|
/** @var Action|null $action Current action module */
|
||||||
private static $action = null;
|
private static $action = null;
|
||||||
|
|
||||||
private static $init = false;
|
protected static $init = false;
|
||||||
|
|
||||||
public static function init(): bool
|
public static function init(): bool
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,7 +23,7 @@ use Clearbricks;
|
||||||
*/
|
*/
|
||||||
class Prepend
|
class Prepend
|
||||||
{
|
{
|
||||||
private static $init = false;
|
protected static $init = false;
|
||||||
|
|
||||||
public static function init(): bool
|
public static function init(): bool
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue