Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5/** @license For full copyright and license information, please see the LICENSE.md file. */
6
7namespace App\Core\Audit\Domain\Model;
8
9defined('AMMONLY_APP') || exit('Direct script access is forbidden.');
10
11/**
12 * Security Event Severity Classification.
13 *
14 * Maps to NIST SP 800-53 / OWASP ASVS incident priority levels.
15 *
16 * @package App\Core\Audit\Domain\Model
17 */
18enum SecurityEventSeverity: string
19{
20    case LOW      = 'LOW';
21    case MEDIUM   = 'MEDIUM';
22    case HIGH     = 'HIGH';
23    case CRITICAL = 'CRITICAL';
24}