D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
public_html
/
vendor
/
opcodesio
/
log-viewer
/
src
/
LogLevels
/
Filename :
LevelInterface.php
back
Copy
<?php namespace Opcodes\LogViewer\LogLevels; interface LevelInterface { public function __construct(string $value); public static function from(?string $value = null): self; public static function caseValues(): array; public function getName(): string; public function getClass(): LevelClass; }