From bb5955cff421d83bb5cdf3ff832f88c6a2ba3428 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 19 Oct 2024 21:19:59 -0400 Subject: [PATCH] Have to make this match the trait --- tests/Integration/IntegrationTestCase.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Integration/IntegrationTestCase.php b/tests/Integration/IntegrationTestCase.php index 0a588e81e..b496eeaa0 100644 --- a/tests/Integration/IntegrationTestCase.php +++ b/tests/Integration/IntegrationTestCase.php @@ -40,8 +40,10 @@ abstract class IntegrationTestCase extends TestCase /** * The database connections that should have transactions. + * + * @return array */ - protected function connectionsToTransact(): array + protected function connectionsToTransact() { return [DB::getDriverName()]; }