D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
opcodesio
/
log-viewer
/
src
/
LogLevels
/
Filename :
HorizonStatusLevel.php
back
Copy
<?php namespace Opcodes\LogViewer\LogLevels; class HorizonStatusLevel implements LevelInterface { public string $value; public function __construct(string $value) { $this->value = $value; } public static function from(?string $value = null): LevelInterface { return new static($value); } public static function caseValues(): array { return [ 'Processing', 'Running', 'Processed', 'Done', 'Failed', 'Fail', ]; } public function getName(): string { return ucfirst(strtolower($this->value)); } public function getClass(): LevelClass { return match (strtolower($this->value)) { 'processing', 'running' => LevelClass::info(), 'processed', 'done' => LevelClass::success(), 'failed', 'fail' => LevelClass::danger(), default => LevelClass::none(), }; } }