From e4b209964f3fdec5bb5c506ee97b10a977820ab1 Mon Sep 17 00:00:00 2001 From: fluffycondor <7ionmail@gmail.com> Date: Sun, 18 Dec 2022 16:26:43 +0600 Subject: [PATCH] Fix return type in a test case --- tests/CoreStubsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CoreStubsTest.php b/tests/CoreStubsTest.php index 3098baec8b1..411534077e1 100644 --- a/tests/CoreStubsTest.php +++ b/tests/CoreStubsTest.php @@ -9,7 +9,7 @@ class CoreStubsTest extends TestCase use ValidCodeAnalysisTestTrait; /** - * @return iterable,error_levels?:string[]}> + * @return iterable,error_levels?:string[],php_version?:string}> */ public function providerValidCodeParse(): iterable { @@ -124,7 +124,7 @@ function foo(string $foo): string ', 'assertions' => [ '$a===' => 'string', - ] + ], ]; } }