Files
ik-codex/src/Analysis/SolutionInterface.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

21 lines
401 B
PHP

<?php
namespace IndifferentKetchup\Codex\Analysis;
use JsonSerializable;
/**
* Interface SolutionInterface
*
* @package IndifferentKetchup\Codex\Analysis
*/
interface SolutionInterface extends JsonSerializable
{
/**
* Get the solution as a human-readable message
*
* @return string
*/
public function getMessage(): string;
public function __toString(): string;
}