1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 18:04:03 +00:00

Facade tests

This commit is contained in:
Samuel Štancl 2019-09-19 20:41:00 +02:00
parent c9903cd43c
commit f0dd99f099
5 changed files with 20 additions and 7 deletions

View file

@ -14,7 +14,7 @@ class TenantFacade extends Facade
return Tenant::class;
}
// todo test this
// todo2 test this
public static function create($domains, array $data): Tenant
{
return Tenant::create($domains, $data);

View file

@ -9,7 +9,7 @@ use Illuminate\Support\Facades\Storage;
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
use Stancl\Tenancy\Tenant;
// todo better solution than tenant_asset?
// todo2 better solution than tenant_asset?
class FilesystemTenancyBootstrapper implements TenancyBootstrapper
{