From aa80d103713cdae298fe5b16a62154642d9b2050 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Mon, 13 Jun 2022 12:44:51 +0200 Subject: [PATCH] Testing section code example formatting (#170) * Testing section code example formatting * Use spaces instead of tabs --- source/docs/v3/testing.blade.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/docs/v3/testing.blade.md b/source/docs/v3/testing.blade.md index e895c10..16b40b6 100644 --- a/source/docs/v3/testing.blade.md +++ b/source/docs/v3/testing.blade.md @@ -55,7 +55,8 @@ class TestCase // extends ... public function initializeTenancy() { $tenant = Tenant::create(); - tenancy()->initialize($tenant); + + tenancy()->initialize($tenant); } // ...