We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fe865b commit 9b127f5Copy full SHA for 9b127f5
tests/end-to-end/regression/5614/Issue5614Test.php
@@ -13,16 +13,19 @@
13
14
final class Issue5614Test extends TestCase
15
{
16
- public static function provideRecursiveArray(): iterable {
17
- $array = [];
+ public static function provideRecursiveArray(): iterable
+ {
18
+ $array = [];
19
$array[0] = &$array;
20
+
21
yield [$array];
22
}
23
24
/**
25
* @dataProvider provideRecursiveArray
26
*/
- public function testRecursiveArray(array $array): void {
27
+ public function testRecursiveArray(array $array): void
28
29
$this->assertTrue(true);
30
31
0 commit comments