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) <noreply@anthropic.com>
This commit is contained in:
Claude 2026-03-24 13:48:04 +00:00
parent eb90702feb
commit 2df0698f99
No known key found for this signature in database
GPG key ID: AF404715446AEB41

View file

@ -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);