Current File : /home/getxxhzo/app.genicards.com/vendor/opcodesio/log-viewer/src/LogLevels/HorizonStatusLevel.php |
<?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(),
};
}
}