From 12b6c4b3008c2df545c537943d4e38323cfc174e Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Sun, 10 Nov 2024 22:28:03 +0200 Subject: Initial commit --- src/Level.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Level.php (limited to 'src/Level.php') diff --git a/src/Level.php b/src/Level.php new file mode 100644 index 0000000..5e573bc --- /dev/null +++ b/src/Level.php @@ -0,0 +1,18 @@ + + */ +enum Level: string +{ + case Emergency = "EMERGENCY"; + case Alert = "ALERT"; + case Critical = "CRITICAL"; + case Error = "ERROR"; + case Warning = "WARNING"; + case Notice = "NOTICE"; + case Info = "INFO"; + case Debug = "DEBUG"; +} -- cgit v1.2.3