From 58c7d37fe3232e43a2661422cdbf0277e9922d44 Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 5 Apr 2024 18:36:53 +0000 Subject: [PATCH] Remove `createApplication` method --- tests/CreatesApplication.php | 30 ------------------------------ tests/TestCase.php | 1 - 2 files changed, 31 deletions(-) delete mode 100644 tests/CreatesApplication.php diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php deleted file mode 100644 index 79b3946f..00000000 --- a/tests/CreatesApplication.php +++ /dev/null @@ -1,30 +0,0 @@ -make(Kernel::class)->bootstrap(); - - return $app; - } -} diff --git a/tests/TestCase.php b/tests/TestCase.php index 90bb3498..5093b50c 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -15,5 +15,4 @@ use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { - use CreatesApplication; }