Skip to content

Commit d23ad22

Browse files
Merge branch '6.2' into 6.3
* 6.2: Fix merge Migrate to `static` data providers using `rector/rector`
2 parents 8a88e39 + 67820d8 commit d23ad22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Command/UserPasswordHashCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ public function testCompletionSuggestions(array $input, array $expectedSuggestio
298298
$this->assertSame($expectedSuggestions, $tester->complete($input));
299299
}
300300

301-
public function provideCompletionSuggestions(): iterable
301+
public static function provideCompletionSuggestions(): iterable
302302
{
303303
yield 'user_class_empty' => [
304304
['p@ssw0rd', ''],

Tests/Hasher/NativePasswordHasherTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function testCostInRange($cost)
3939
$this->assertInstanceOf(NativePasswordHasher::class, new NativePasswordHasher(null, null, $cost));
4040
}
4141

42-
public function validRangeData()
42+
public static function validRangeData()
4343
{
4444
$costs = range(4, 31);
4545
array_walk($costs, function (&$cost) { $cost = [$cost]; });

0 commit comments

Comments
 (0)