From b399cb4c7e0db64ad2389cbd78964c8304fb6e51 Mon Sep 17 00:00:00 2001 From: Guilhem Niot Date: Sun, 19 Dec 2021 11:41:36 +0100 Subject: [PATCH] fix tests --- Tests/Functional/ValidationGroupsFunctionalTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tests/Functional/ValidationGroupsFunctionalTest.php b/Tests/Functional/ValidationGroupsFunctionalTest.php index 611b869..70d018e 100644 --- a/Tests/Functional/ValidationGroupsFunctionalTest.php +++ b/Tests/Functional/ValidationGroupsFunctionalTest.php @@ -11,9 +11,11 @@ namespace Nelmio\ApiDocBundle\Tests\Functional; +use Symfony\Component\HttpKernel\KernelInterface; + class ValidationGroupsFunctionalTest extends WebTestCase { - protected static function createKernel(array $options = []) + protected static function createKernel(array $options = []): KernelInterface { return new TestKernel(TestKernel::USE_VALIDATION_GROUPS); }