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.
21 lines
401 B
PHP
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;
|
|
} |