fixing sources
Deploy / deploy (push) Successful in 6s

This commit is contained in:
2026-05-06 12:15:57 +02:00
parent 8db6ba6ce2
commit 6968aefcc6
3 changed files with 31 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace Jakach\Logging\Model;
enum AlertSeverity: string
{
case Info = 'info';
case Warning = 'warning';
case Critical = 'critical';
}
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace Jakach\Logging\Model;
enum AlertStatus: string
{
case Open = 'open';
case Acknowledged = 'acknowledged';
case Resolved = 'resolved';
}
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace Jakach\Logging\Model;
enum LogSourceType: string
{
case File = 'file';
case Tcp = 'tcp';
case Udp = 'udp';
case Http = 'http';
}