Skip to content

Commit b688c3a

Browse files
committed
Set rectop PHP Unit Version
1 parent 0876e56 commit b688c3a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191

9292
LevelSetList::UP_TO_PHP_81,
9393

94-
PHPUnitLevelSetList::UP_TO_PHPUNIT_100,
94+
PHPUnitLevelSetList::UP_TO_PHPUNIT_90,
9595

9696
// Skipped
9797
// SetList::PRIVATIZATION,

tests/Feature/WebPrintApi/CreateDialogsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public function test_sets_correct_values(array $post, array $expected): void
170170
]);
171171
}
172172

173-
public function correctValues()
173+
public function correctValues(): \Generator
174174
{
175175
yield 'auto_print' => [
176176
[

tests/Feature/WebPrintApi/CreatePromisesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function test_can_create_with_correct_token(callable $post, callable $exp
9595
]);
9696
}
9797

98-
public function providesDataForCreate()
98+
public function providesDataForCreate(): \Generator
9999
{
100100
yield 'minimal' => [
101101
fn (Collection $printers, Collection $printers_ppd, CreatePromisesTest $test): array => [

tests/Feature/WebPrintApi/UpdatePromisesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function test_can_update_with_correct_token(callable $post, callable $ass
113113
$asserts($promise, $response, $printers_ppd, $this);
114114
}
115115

116-
public function providesDataForUpdate()
116+
public function providesDataForUpdate(): \Generator
117117
{
118118
yield 'updates name' => [
119119
fn (Collection $printers_ppd, UpdatePromisesTest $test): array => [

0 commit comments

Comments
 (0)