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