From d10ca0ec68ecae98be3f1a5d15d16d140547f2f8 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sat, 18 May 2024 14:17:12 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/FunctionalTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FunctionalTestCase.php b/src/FunctionalTestCase.php index 31411d8..f9d8165 100644 --- a/src/FunctionalTestCase.php +++ b/src/FunctionalTestCase.php @@ -34,6 +34,6 @@ protected function doRequest(string $method, string $url): ResponseAccessor protected function getContainer(): ContainerInterface { - return $this->tester?->getContainer()?? throw new Exception('Either $tester or $container is null'); + return $this->tester?->getContainer() ?? throw new Exception('Either $tester or $container is null'); } }