From d8c676a249dbcd2c44f9fc3b75084b8e14abf372 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Mon, 16 Jan 2023 23:49:39 +0100 Subject: [PATCH] adjust property visibility --- inc/Admin.php | 2 +- inc/Config.php | 2 +- inc/Install.php | 2 +- inc/Manage.php | 2 +- inc/Prepend.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/Admin.php b/inc/Admin.php index e86d5ea..d04aaad 100644 --- a/inc/Admin.php +++ b/inc/Admin.php @@ -31,7 +31,7 @@ use files; */ class Admin { - private static $init = false; + protected static $init = false; public static function init(): bool { diff --git a/inc/Config.php b/inc/Config.php index 053a7cc..13be04a 100644 --- a/inc/Config.php +++ b/inc/Config.php @@ -31,7 +31,7 @@ use Exception; */ class Config { - private static $init = false; + protected static $init = false; public static function init(): bool { diff --git a/inc/Install.php b/inc/Install.php index 278593c..da88bb0 100644 --- a/inc/Install.php +++ b/inc/Install.php @@ -37,7 +37,7 @@ class Install ]]; // Nothing to change below - private static $init = false; + protected static $init = false; public static function init(): bool { diff --git a/inc/Manage.php b/inc/Manage.php index 125146b..816a867 100644 --- a/inc/Manage.php +++ b/inc/Manage.php @@ -45,7 +45,7 @@ class Manage /** @var Action|null $action Current action module */ private static $action = null; - private static $init = false; + protected static $init = false; public static function init(): bool { diff --git a/inc/Prepend.php b/inc/Prepend.php index 885170e..93c3956 100644 --- a/inc/Prepend.php +++ b/inc/Prepend.php @@ -23,7 +23,7 @@ use Clearbricks; */ class Prepend { - private static $init = false; + protected static $init = false; public static function init(): bool {