From 2df0698f996f68c7bf245f926ae36380963d1415 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 24 Mar 2026 13:48:04 +0000 Subject: [PATCH] docs: fix incorrect namespace in README.md usage examples Change Core\Mod\Tenant\Services to Core\Tenant\Services to match the actual namespace used in source files. Fixes #28 Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a71b6e..56e578f 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,8 @@ php artisan migrate ### Workspace Management ```php -use Core\Mod\Tenant\Services\WorkspaceManager; -use Core\Mod\Tenant\Services\WorkspaceService; +use Core\Tenant\Services\WorkspaceManager; +use Core\Tenant\Services\WorkspaceService; // Get current workspace $workspace = app(WorkspaceManager::class)->current(); @@ -57,7 +57,7 @@ $workspace = app(WorkspaceService::class)->create([ ### Entitlements ```php -use Core\Mod\Tenant\Services\EntitlementService; +use Core\Tenant\Services\EntitlementService; $entitlements = app(EntitlementService::class);