Skip to content

Commit

Permalink
fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomulik authored and sebastianbergmann committed Dec 12, 2023
1 parent 3fe865b commit 9b127f5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/end-to-end/regression/5614/Issue5614Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,19 @@

final class Issue5614Test extends TestCase
{
public static function provideRecursiveArray(): iterable {
$array = [];
public static function provideRecursiveArray(): iterable
{
$array = [];
$array[0] = &$array;

yield [$array];
}

/**
* @dataProvider provideRecursiveArray
*/
public function testRecursiveArray(array $array): void {
public function testRecursiveArray(array $array): void
{
$this->assertTrue(true);
}
}

0 comments on commit 9b127f5

Please sign in to comment.