From ec3cd7966e2dcfbf8afdfdfa62453a225c418da4 Mon Sep 17 00:00:00 2001 From: codexianltd <42223447+codexianltd@users.noreply.github.com> Date: Sat, 5 Dec 2020 20:24:24 +0530 Subject: [PATCH] Update tenant-migrations.blade.md (#97) semicolon wrongly placed in example's array element producing syntax error if copied and used --- source/docs/v2/tenant-migrations.blade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/docs/v2/tenant-migrations.blade.md b/source/docs/v2/tenant-migrations.blade.md index 5c85f00..7d8b8eb 100644 --- a/source/docs/v2/tenant-migrations.blade.md +++ b/source/docs/v2/tenant-migrations.blade.md @@ -23,7 +23,7 @@ You can run migrations from outside the command line as well. To run migrations $tenant = \Tenant::create('tenant1.localhost'); \Artisan::call('tenants:migrate', [ - '--tenants' => [$tenant->id]; + '--tenants' => [$tenant->id] ]); ```