refactor(security): replace generic event with severity enum

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-08-05 23:59:49 -04:00
parent 3f9c2500d9
commit 84eb0e2c21
27 changed files with 80 additions and 247 deletions
+1 -1
View File
@@ -6,5 +6,5 @@ namespace KTXC\Security\Event;
final class IpBlockedEvent extends FirewallIpEvent
{
protected const SEVERITY = SecurityEvent::SEVERITY_CRITICAL;
protected const SecurityEventSeverity SEVERITY = SecurityEventSeverity::CRITICAL;
}