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:
@@ -1,12 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Aternos\Codex\Test\Tests\Analysis;
|
||||
namespace IndifferentKetchup\Codex\Test\Tests\Analysis;
|
||||
|
||||
use Aternos\Codex\Analysis\Analysis;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestInformation;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestInsight;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestPatternProblem;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestProblem;
|
||||
use IndifferentKetchup\Codex\Analysis\Analysis;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestInformation;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestInsight;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestPatternProblem;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestProblem;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class AnalysisTest extends TestCase
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Aternos\Codex\Test\Tests\Analysis;
|
||||
namespace IndifferentKetchup\Codex\Test\Tests\Analysis;
|
||||
|
||||
use Aternos\Codex\Log\File\PathLogFile;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestInformation;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestPatternInformation;
|
||||
use Aternos\Codex\Test\Src\Log\TestPatternLog;
|
||||
use IndifferentKetchup\Codex\Log\File\PathLogFile;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestInformation;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestPatternInformation;
|
||||
use IndifferentKetchup\Codex\Test\Src\Log\TestPatternLog;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class InformationTest extends TestCase
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<?php
|
||||
|
||||
namespace Aternos\Codex\Test\Tests\Analysis;
|
||||
namespace IndifferentKetchup\Codex\Test\Tests\Analysis;
|
||||
|
||||
use Aternos\Codex\Test\Src\Analysis\TestProblem;
|
||||
use Aternos\Codex\Test\Src\Analysis\TestSolution;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestProblem;
|
||||
use IndifferentKetchup\Codex\Test\Src\Analysis\TestSolution;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
class ProblemTest extends TestCase
|
||||
|
||||
Reference in New Issue
Block a user