Skip to content

Commit 1d25035

Browse files
committed
re-run rector
1 parent 6b0f6f2 commit 1d25035

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tests/FinderTest.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121

2222
final class FinderTest extends TestCase
2323
{
24+
/**
25+
* @param int[]|string[] $data
26+
*/
2427
#[DataProvider('firstDataProvider')]
2528
public function testFirst(iterable $data, callable $filter, mixed $expected): void
2629
{
@@ -57,6 +60,9 @@ public static function firstDataProvider(): Iterator
5760
];
5861
}
5962

63+
/**
64+
* @param int[]|string[] $data
65+
*/
6066
#[DataProvider('firstReturnKeyDataProvider')]
6167
public function testFirstReturnKey(iterable $data, callable $filter, mixed $expected): void
6268
{
@@ -93,6 +99,9 @@ public static function firstReturnKeyDataProvider(): Iterator
9399
];
94100
}
95101

102+
/**
103+
* @param mixed[] $data
104+
*/
96105
#[DataProvider('lastDataProvider')]
97106
public function testLast(iterable $data, callable $filter, mixed $expected): void
98107
{
@@ -165,6 +174,9 @@ public static function lastDataProvider(): Iterator
165174
];
166175
}
167176

177+
/**
178+
* @param mixed[] $data
179+
*/
168180
#[DataProvider('lastReturnKeyDataProvider')]
169181
public function testLastReturnKey(iterable $data, callable $filter, mixed $expected): void
170182
{
@@ -237,6 +249,9 @@ public static function lastReturnKeyDataProvider(): Iterator
237249
];
238250
}
239251

252+
/**
253+
* @param int[] $data
254+
*/
240255
#[DataProvider('lastReturnKeyResortKeyDataProvider')]
241256
public function testLastReturnKeyResortKey(iterable $data, callable $filter, mixed $expected): void
242257
{
@@ -277,6 +292,7 @@ public function testLastKeepCurrentOriginalData(): void
277292

278293
/**
279294
* @param array<int|string, int> $expected
295+
* @param array<int|string, int> $data
280296
*/
281297
#[DataProvider('rowsDataProvider')]
282298
public function testRows(iterable $data, callable $filter, array $expected): void
@@ -322,6 +338,7 @@ public static function rowsDataProvider(): Iterator
322338

323339
/**
324340
* @param int[] $expected
341+
* @param int[] $data
325342
*/
326343
#[DataProvider('rowsDataProviderPreserveKey')]
327344
public function testRowsPreserveKey(iterable $data, callable $filter, array $expected): void

0 commit comments

Comments
 (0)