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:
2026-04-14 07:54:02 +02:00
parent 0e86925464
commit 143d887a5c
9 changed files with 14 additions and 14 deletions

View File

@@ -30,10 +30,10 @@ final class CliAppBootstrap
require_once $projectRoot . '/vendor/autoload.php';
require_once $projectRoot . '/config/config.php';
require_once $projectRoot . '/lib/Support/helpers.php';
require_once $projectRoot . '/core/Support/helpers.php';
/** @var AppContainer $container */
$container = require $projectRoot . '/lib/App/registerContainer.php';
$container = require $projectRoot . '/core/App/registerContainer.php';
setAppContainer($container);
self::$container = $container;

View File

@@ -30,9 +30,9 @@ final class ModuleCliRuntime
require_once $projectRoot . '/vendor/autoload.php';
require_once $projectRoot . '/config/config.php';
require_once $projectRoot . '/lib/Support/helpers.php';
require_once $projectRoot . '/core/Support/helpers.php';
$container = require $projectRoot . '/lib/App/registerContainer.php';
$container = require $projectRoot . '/core/App/registerContainer.php';
setAppContainer($container);
self::$booted = true;