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

17 lines
364 B
PHP

<?php
namespace IndifferentKetchup\Codex\Analysis;
/**
* Interface AutomatableSolutionInterface
*
* This interface should be used to indicate
* that a solution can be solved automatically
* e.g. deletion/creation/modification of files
*
* @package IndifferentKetchup\Codex\Analysis
*/
interface AutomatableSolutionInterface extends SolutionInterface
{
}