fix: patch remaining lib/ references missed in core/ rename
CliAppBootstrap and ModuleCliRuntime still required from the old lib/ path, which would break all CLI commands. Also fixes stale lib/ references in docs, test assertion messages, and a PHPDoc comment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -46,7 +46,7 @@ final class AuditModuleIsolationContractTest extends TestCase
|
||||
$root = dirname(__DIR__, 2);
|
||||
self::assertDirectoryDoesNotExist(
|
||||
$root . '/core/Repository/Audit',
|
||||
'Audit repository classes should live in modules/audit/lib, not in Core core/Repository/Audit'
|
||||
'Audit repository classes should live in modules/audit/lib, not in core/Repository/Audit'
|
||||
);
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ final class AuditModuleIsolationContractTest extends TestCase
|
||||
self::assertSame(
|
||||
[],
|
||||
array_values($auditFiles),
|
||||
'Core lib/Domain/Taxonomy/ still contains audit enum files: ' . implode(', ', $auditFiles)
|
||||
'core/Domain/Taxonomy/ still contains audit enum files: ' . implode(', ', $auditFiles)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -91,7 +91,7 @@ final class AuditModuleIsolationContractTest extends TestCase
|
||||
$root = dirname(__DIR__, 2);
|
||||
self::assertFileDoesNotExist(
|
||||
$root . '/core/Http/ApiSystemAuditReporter.php',
|
||||
'ApiSystemAuditReporter should live in modules/audit/lib, not in Core lib/Http'
|
||||
'ApiSystemAuditReporter should live in modules/audit/lib, not in core/Http'
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user