From cb59bc4f156b9285c563994e3a9b963e2a665cc8 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 09:45:37 +0100 Subject: [PATCH] Fix PHPStan issue --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index dd6102e..8a6eae8 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,7 +11,7 @@ class TestCase extends \Orchestra\Testbench\TestCase { parent::setUp(); - $this->app->bind('translation.loader', GlossLoader::class); + $this->app?->bind('translation.loader', GlossLoader::class); } protected function getPackageProviders($app)