PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
opcodesio
/
log-viewer
/
src
/
LogLevels
/
Editing: LevelInterface.php
<?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; }
SAVE
CANCEL