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,12 +1,12 @@
<?php
namespace Aternos\Codex\Test\Tests\Printer;
namespace IndifferentKetchup\Codex\Test\Tests\Printer;
use Aternos\Codex\Log\Entry;
use Aternos\Codex\Log\File\PathLogFile;
use Aternos\Codex\Log\Line;
use Aternos\Codex\Log\Log;
use Aternos\Codex\Printer\DefaultPrinter;
use IndifferentKetchup\Codex\Log\Entry;
use IndifferentKetchup\Codex\Log\File\PathLogFile;
use IndifferentKetchup\Codex\Log\Line;
use IndifferentKetchup\Codex\Log\Log;
use IndifferentKetchup\Codex\Printer\DefaultPrinter;
use PHPUnit\Framework\TestCase;
class DefaultPrinterTest extends TestCase

View File

@@ -1,13 +1,13 @@
<?php
namespace Aternos\Codex\Test\Tests\Printer;
namespace IndifferentKetchup\Codex\Test\Tests\Printer;
use Aternos\Codex\Log\Entry;
use Aternos\Codex\Log\File\StringLogFile;
use Aternos\Codex\Log\Line;
use Aternos\Codex\Log\Log;
use Aternos\Codex\Printer\ModifiableDefaultPrinter;
use Aternos\Codex\Test\Src\Printer\TestModification;
use IndifferentKetchup\Codex\Log\Entry;
use IndifferentKetchup\Codex\Log\File\StringLogFile;
use IndifferentKetchup\Codex\Log\Line;
use IndifferentKetchup\Codex\Log\Log;
use IndifferentKetchup\Codex\Printer\ModifiableDefaultPrinter;
use IndifferentKetchup\Codex\Test\Src\Printer\TestModification;
use PHPUnit\Framework\TestCase;
class ModifiableDefaultPrinterTest extends TestCase

View File

@@ -1,11 +1,11 @@
<?php
namespace Aternos\Codex\Test\Tests\Printer;
namespace IndifferentKetchup\Codex\Test\Tests\Printer;
use Aternos\Codex\Log\File\StringLogFile;
use Aternos\Codex\Log\Log;
use Aternos\Codex\Printer\ModifiableDefaultPrinter;
use Aternos\Codex\Printer\PatternModification;
use IndifferentKetchup\Codex\Log\File\StringLogFile;
use IndifferentKetchup\Codex\Log\Log;
use IndifferentKetchup\Codex\Printer\ModifiableDefaultPrinter;
use IndifferentKetchup\Codex\Printer\PatternModification;
use PHPUnit\Framework\TestCase;
class PatternModificationTest extends TestCase