diff --git a/src/Facades/TenantFacade.php b/src/Facades/TenantFacade.php index 06f783d4..e319cb8c 100644 --- a/src/Facades/TenantFacade.php +++ b/src/Facades/TenantFacade.php @@ -14,7 +14,7 @@ class TenantFacade extends Facade return Tenant::class; } - public static function create($domains, array $data): Tenant + public static function create($domains, array $data = []): Tenant { return Tenant::create($domains, $data); } diff --git a/tests/CommandsTest.php b/tests/CommandsTest.php index 97e840ca..ae35888d 100644 --- a/tests/CommandsTest.php +++ b/tests/CommandsTest.php @@ -117,8 +117,6 @@ class CommandsTest extends TestCase ->expectsOutput('xyz'); } - // todo2 check that multiple tenants can be migrated at once using all database engines - /** @test */ public function install_command_works() {