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
373 B
PHP
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.";
|
|
}
|
|
} |