From 136862369daaee400bd3d5164da3e2016aeb1f58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 7 Feb 2019 15:39:39 +0100 Subject: [PATCH] Move HttpKernel to /tests/ --- {src/Testing => tests}/HttpKernel.php | 2 +- tests/TestCase.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {src/Testing => tests}/HttpKernel.php (98%) diff --git a/src/Testing/HttpKernel.php b/tests/HttpKernel.php similarity index 98% rename from src/Testing/HttpKernel.php rename to tests/HttpKernel.php index 88553ec7..120e6a69 100644 --- a/src/Testing/HttpKernel.php +++ b/tests/HttpKernel.php @@ -1,6 +1,6 @@ singleton('Illuminate\Contracts\Http\Kernel', \Stancl\Tenancy\Testing\HttpKernel::class); + $app->singleton('Illuminate\Contracts\Http\Kernel', HttpKernel::class); } }