Files
ik-codex/src/Log/LevelInterface.php
indifferentketchup 66a2fcc5f3 Rename namespace Aternos\Codex to IndifferentKetchup\Codex
Bulk substitution across all PHP files in src/ and test/. Covers
namespace declarations, use statements, fully-qualified class
references, and @package PHPDoc tags. No logic changes.
2026-04-30 15:13:52 +00:00

24 lines
417 B
PHP

<?php
namespace IndifferentKetchup\Codex\Log;
use JsonSerializable;
interface LevelInterface extends JsonSerializable
{
/**
* @param string $level
* @return LevelInterface
*/
public static function fromString(string $level): LevelInterface;
/**
* @return string
*/
public function asString(): string;
/**
* @return int
*/
public function asInt(): int;
}