84eb0e2c21
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
11 lines
206 B
PHP
11 lines
206 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KTXC\Security\Event;
|
|
|
|
final class IpBlockedEvent extends FirewallIpEvent
|
|
{
|
|
protected const SecurityEventSeverity SEVERITY = SecurityEventSeverity::CRITICAL;
|
|
}
|