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.
17 lines
364 B
PHP
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
|
|
{
|
|
|
|
} |