From 9567d002dceda304e62cc0e230dba7f237a18abd Mon Sep 17 00:00:00 2001 From: codexianltd <42223447+codexianltd@users.noreply.github.com> Date: Fri, 4 Dec 2020 12:42:07 +0530 Subject: [PATCH] Update tenant-migrations.blade.md 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] ]); ```