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:
parent
eb90702feb
commit
2df0698f99
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue