Set explicit visibility metadata on class constants
This commit is contained in:
parent
700bd200ac
commit
fc8fb9b3dd
|
@ -11,8 +11,8 @@ declare(strict_types = 1);
|
||||||
*/
|
*/
|
||||||
final class MDConsole {
|
final class MDConsole {
|
||||||
|
|
||||||
const CONSOLE_LOG_USED_RESOURCES_ENABLED = 1;
|
public const CONSOLE_LOG_USED_RESOURCES_ENABLED = 1;
|
||||||
const CONSOLE_LOG_USED_RESOURCES_DISABLED = 0;
|
public const CONSOLE_LOG_USED_RESOURCES_DISABLED = 0;
|
||||||
|
|
||||||
/** @var boolean */
|
/** @var boolean */
|
||||||
public static $verbose = true;
|
public static $verbose = true;
|
||||||
|
|
|
@ -11,7 +11,7 @@ declare(strict_types = 1);
|
||||||
*/
|
*/
|
||||||
final class MDOutputHandler {
|
final class MDOutputHandler {
|
||||||
|
|
||||||
const FLUSH_TO_LOGFILE_AFTER = 100;
|
private const FLUSH_TO_LOGFILE_AFTER = 100;
|
||||||
|
|
||||||
public static bool $disable_completely = false;
|
public static bool $disable_completely = false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user