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.
This commit is contained in:
2026-04-30 15:13:52 +00:00
parent 6870ed6ea7
commit 66a2fcc5f3
85 changed files with 294 additions and 294 deletions

View File

@@ -1,13 +1,13 @@
<?php
namespace Aternos\Codex\Analyser;
namespace IndifferentKetchup\Codex\Analyser;
use Aternos\Codex\Log\AnalysableLogInterface;
use IndifferentKetchup\Codex\Log\AnalysableLogInterface;
/**
* Class Analyser
*
* @package Aternos\Codex\Analyser
* @package IndifferentKetchup\Codex\Analyser
*/
abstract class Analyser implements AnalyserInterface
{

View File

@@ -1,14 +1,14 @@
<?php
namespace Aternos\Codex\Analyser;
namespace IndifferentKetchup\Codex\Analyser;
use Aternos\Codex\Analysis\AnalysisInterface;
use Aternos\Codex\Log\AnalysableLogInterface;
use IndifferentKetchup\Codex\Analysis\AnalysisInterface;
use IndifferentKetchup\Codex\Log\AnalysableLogInterface;
/**
* Interface AnalyserInterface
*
* @package Aternos\Codex\Analyser
* @package IndifferentKetchup\Codex\Analyser
*/
interface AnalyserInterface
{

View File

@@ -1,17 +1,17 @@
<?php
namespace Aternos\Codex\Analyser;
namespace IndifferentKetchup\Codex\Analyser;
use Aternos\Codex\Analysis\Analysis;
use Aternos\Codex\Analysis\AnalysisInterface;
use Aternos\Codex\Analysis\PatternInsightInterface;
use Aternos\Codex\Log\EntryInterface;
use IndifferentKetchup\Codex\Analysis\Analysis;
use IndifferentKetchup\Codex\Analysis\AnalysisInterface;
use IndifferentKetchup\Codex\Analysis\PatternInsightInterface;
use IndifferentKetchup\Codex\Log\EntryInterface;
use InvalidArgumentException;
/**
* Class PatternAnalyser
*
* @package Aternos\Codex\Analyser
* @package IndifferentKetchup\Codex\Analyser
*/
class PatternAnalyser extends Analyser
{