Skip to content

Commit 9b127f5

Browse files
ptomuliksebastianbergmann
authored andcommitted
fixed code style
1 parent 3fe865b commit 9b127f5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/end-to-end/regression/5614/Issue5614Test.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@
1313

1414
final class Issue5614Test extends TestCase
1515
{
16-
public static function provideRecursiveArray(): iterable {
17-
$array = [];
16+
public static function provideRecursiveArray(): iterable
17+
{
18+
$array = [];
1819
$array[0] = &$array;
20+
1921
yield [$array];
2022
}
2123

2224
/**
2325
* @dataProvider provideRecursiveArray
2426
*/
25-
public function testRecursiveArray(array $array): void {
27+
public function testRecursiveArray(array $array): void
28+
{
2629
$this->assertTrue(true);
2730
}
2831
}

0 commit comments

Comments
 (0)