Set explicit visibility metadata on class constants

This commit is contained in:
Joshua Ramon Enslin 2024-06-11 22:02:21 +02:00
parent 700bd200ac
commit fc8fb9b3dd
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
2 changed files with 3 additions and 3 deletions

View File

@ -11,8 +11,8 @@ declare(strict_types = 1);
*/
final class MDConsole {
const CONSOLE_LOG_USED_RESOURCES_ENABLED = 1;
const CONSOLE_LOG_USED_RESOURCES_DISABLED = 0;
public const CONSOLE_LOG_USED_RESOURCES_ENABLED = 1;
public const CONSOLE_LOG_USED_RESOURCES_DISABLED = 0;
/** @var boolean */
public static $verbose = true;

View File

@ -11,7 +11,7 @@ declare(strict_types = 1);
*/
final class MDOutputHandler {
const FLUSH_TO_LOGFILE_AFTER = 100;
private const FLUSH_TO_LOGFILE_AFTER = 100;
public static bool $disable_completely = false;