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,11 +1,11 @@
<?php
namespace Aternos\Codex\Test\Src\Log;
namespace IndifferentKetchup\Codex\Test\Src\Log;
use Aternos\Codex\Detective\DetectorInterface;
use Aternos\Codex\Detective\SinglePatternDetector;
use Aternos\Codex\Log\DetectableLogInterface;
use Aternos\Codex\Log\Log;
use IndifferentKetchup\Codex\Detective\DetectorInterface;
use IndifferentKetchup\Codex\Detective\SinglePatternDetector;
use IndifferentKetchup\Codex\Log\DetectableLogInterface;
use IndifferentKetchup\Codex\Log\Log;
/**
* Class TestAlwaysDetectableLog

View File

@@ -1,11 +1,11 @@
<?php
namespace Aternos\Codex\Test\Src\Log;
namespace IndifferentKetchup\Codex\Test\Src\Log;
use Aternos\Codex\Detective\DetectorInterface;
use Aternos\Codex\Detective\LinePatternDetector;
use Aternos\Codex\Log\DetectableLogInterface;
use Aternos\Codex\Log\Log;
use IndifferentKetchup\Codex\Detective\DetectorInterface;
use IndifferentKetchup\Codex\Detective\LinePatternDetector;
use IndifferentKetchup\Codex\Log\DetectableLogInterface;
use IndifferentKetchup\Codex\Log\Log;
/**
* Class TestLessDetectableLog

View File

@@ -1,11 +1,11 @@
<?php
namespace Aternos\Codex\Test\Src\Log;
namespace IndifferentKetchup\Codex\Test\Src\Log;
use Aternos\Codex\Detective\DetectorInterface;
use Aternos\Codex\Detective\LinePatternDetector;
use Aternos\Codex\Log\DetectableLogInterface;
use Aternos\Codex\Log\Log;
use IndifferentKetchup\Codex\Detective\DetectorInterface;
use IndifferentKetchup\Codex\Detective\LinePatternDetector;
use IndifferentKetchup\Codex\Log\DetectableLogInterface;
use IndifferentKetchup\Codex\Log\Log;
/**
* Class TestMoreDetectableLog

View File

@@ -1,11 +1,11 @@
<?php
namespace Aternos\Codex\Test\Src\Log;
namespace IndifferentKetchup\Codex\Test\Src\Log;
use Aternos\Codex\Detective\DetectorInterface;
use Aternos\Codex\Detective\SinglePatternDetector;
use Aternos\Codex\Log\DetectableLogInterface;
use Aternos\Codex\Log\Log;
use IndifferentKetchup\Codex\Detective\DetectorInterface;
use IndifferentKetchup\Codex\Detective\SinglePatternDetector;
use IndifferentKetchup\Codex\Log\DetectableLogInterface;
use IndifferentKetchup\Codex\Log\Log;
/**
* Class TestNeverDetectableLog

View File

@@ -1,12 +1,12 @@
<?php
namespace Aternos\Codex\Test\Src\Log;
namespace IndifferentKetchup\Codex\Test\Src\Log;
use Aternos\Codex\Analyser\PatternAnalyser;
use Aternos\Codex\Log\AnalysableLog;
use Aternos\Codex\Parser\PatternParser;
use Aternos\Codex\Test\Src\Analysis\TestPatternInformation;
use Aternos\Codex\Test\Src\Analysis\TestPatternProblem;
use IndifferentKetchup\Codex\Analyser\PatternAnalyser;
use IndifferentKetchup\Codex\Log\AnalysableLog;
use IndifferentKetchup\Codex\Parser\PatternParser;
use IndifferentKetchup\Codex\Test\Src\Analysis\TestPatternInformation;
use IndifferentKetchup\Codex\Test\Src\Analysis\TestPatternProblem;
/**
* Class TestLog