mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 17:54:03 +00:00
Add config for readied tenants Add `create` and `clear` command Add Readied scope and static functions Add tests
16 lines
420 B
PHP
16 lines
420 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Tests\Etc;
|
|
|
|
use Stancl\Tenancy\Contracts\TenantWithDatabase;
|
|
use Stancl\Tenancy\Database\Concerns\HasDatabase;
|
|
use Stancl\Tenancy\Database\Concerns\HasDomains;
|
|
use Stancl\Tenancy\Database\Concerns\WithReadied;
|
|
use Stancl\Tenancy\Database\Models;
|
|
|
|
class Tenant extends Models\Tenant implements TenantWithDatabase
|
|
{
|
|
use HasDatabase, HasDomains, WithReadied;
|
|
}
|