1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-19 23:56:17 +02:00

Add visibility to constants

This commit is contained in:
George Mponos
2018-11-17 20:38:51 +02:00
parent 6bb347c040
commit c68b71edeb
20 changed files with 45 additions and 45 deletions

View File

@@ -30,19 +30,19 @@ class Logger implements LoggerInterface, ResettableInterface
/**
* Detailed debug information
*/
const DEBUG = 100;
public const DEBUG = 100;
/**
* Interesting events
*
* Examples: User logs in, SQL logs.
*/
const INFO = 200;
public const INFO = 200;
/**
* Uncommon events
*/
const NOTICE = 250;
public const NOTICE = 250;
/**
* Exceptional occurrences that are not errors
@@ -50,19 +50,19 @@ class Logger implements LoggerInterface, ResettableInterface
* Examples: Use of deprecated APIs, poor use of an API,
* undesirable things that are not necessarily wrong.
*/
const WARNING = 300;
public const WARNING = 300;
/**
* Runtime errors
*/
const ERROR = 400;
public const ERROR = 400;
/**
* Critical conditions
*
* Example: Application component unavailable, unexpected exception.
*/
const CRITICAL = 500;
public const CRITICAL = 500;
/**
* Action must be taken immediately
@@ -70,12 +70,12 @@ class Logger implements LoggerInterface, ResettableInterface
* Example: Entire website down, database unavailable, etc.
* This should trigger the SMS alerts and wake you up.
*/
const ALERT = 550;
public const ALERT = 550;
/**
* Urgent alert.
*/
const EMERGENCY = 600;
public const EMERGENCY = 600;
/**
* Monolog API version
@@ -85,7 +85,7 @@ class Logger implements LoggerInterface, ResettableInterface
*
* @var int
*/
const API = 2;
public const API = 2;
/**
* This is a static variable and not a constant to serve as an extension point for custom levels