Skip to content

Commit

Permalink
Fix deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
micszo committed May 23, 2024
1 parent a4fec3a commit 2ff57cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/bundle/Form/RetryChoiceListFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ public function testCreateViewFail(): void
}

/**
* @return iterable<array<string,int>>
* @return iterable<string, array{int}>
*/
public static function provider(): iterable
{
yield ['No failures' => 0];
yield ['One failure' => 1];
yield ['Two failures' => 2];
yield ['Three failures' => 3];
yield 'No failures' => [0];
yield 'One failure' => [1];
yield 'Two failures' => [2];
yield 'Three failures' => [3];
}
}

0 comments on commit 2ff57cb

Please sign in to comment.