Files
ik-codex/test/src/Analysis/TestSolution.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
373 B
PHP

<?php
namespace IndifferentKetchup\Codex\Test\Src\Analysis;
use IndifferentKetchup\Codex\Analysis\Solution;
/**
* Class TestSolution
*/
class TestSolution extends Solution
{
/**
* Get the solution as a human-readable message
*
* @return string
*/
public function getMessage(): string
{
return "This is a test solution.";
}
}