14 lines
278 B
PHP
14 lines
278 B
PHP
<?php
|
|
|
|
return [
|
|
'all' => 'All',
|
|
'emergency' => 'Emergency',
|
|
'alert' => 'Alert',
|
|
'critical' => 'Critical',
|
|
'error' => 'Error',
|
|
'warning' => 'Warning',
|
|
'notice' => 'Notice',
|
|
'info' => 'Info',
|
|
'debug' => 'Debug',
|
|
];
|