From 2b71db381445fe73654a6d00d98e7a3022e9c4da Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 16 Feb 2023 10:55:58 +0100 Subject: [PATCH] Ignore PHPStan error --- tests/TestCase.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 8a6eae8..ab7fc76 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,7 +11,8 @@ class TestCase extends \Orchestra\Testbench\TestCase { parent::setUp(); - $this->app?->bind('translation.loader', GlossLoader::class); + // @phpstan-ignore-next-line + $this->app->bind('translation.loader', GlossLoader::class); } protected function getPackageProviders($app)