File manager - Edit - /var/www/payraty/helpdesk/vendor/opcodesio/log-viewer/src/LogLevels/SupervisorLogLevel.php
Back
<?php namespace Opcodes\LogViewer\LogLevels; class SupervisorLogLevel implements LevelInterface { const MAP = [ 'CRIT' => 'critical', 'ERRO' => 'error', 'WARN' => 'warning', 'INFO' => 'info', 'DEBG' => 'debug', 'TRAC' => 'trace', 'BLAT' => 'blather', ]; public string $value; public function __construct(string $value) { if (isset(static::MAP[$value])) { $value = static::MAP[$value]; } $this->value = $value; } public static function from(?string $value = null): LevelInterface { return new static($value); } public static function caseValues(): array { return array_values(static::MAP); } public function getName(): string { return ucfirst($this->value); } public function getClass(): LevelClass { return match ($this->value) { 'info', 'debug', 'trace', 'blather' => LevelClass::info(), 'warning' => LevelClass::warning(), 'critical', 'error' => LevelClass::danger(), default => LevelClass::none(), }; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings