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.
24 lines
417 B
PHP
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;
|
|
} |