Skip to content

Commit 1b1ff95

Browse files
Merge branch '6.2' into 6.3
* 6.2: Fix merge Migrate to `static` data providers using `rector/rector`
2 parents de962dc + f6a959b commit 1b1ff95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/MockClockTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function testSleep()
6363
$this->assertSame($tz, $clock->now()->getTimezone()->getName());
6464
}
6565

66-
public function provideValidModifyStrings(): iterable
66+
public static function provideValidModifyStrings(): iterable
6767
{
6868
yield 'absolute datetime value' => [
6969
'2112-09-17 23:53:03.001',
@@ -90,7 +90,7 @@ public function testModifyWithSpecificDateTime(string $modifiedNow, string $expe
9090
$this->assertSame($tz, $clock->now()->getTimezone()->getName());
9191
}
9292

93-
public function provideInvalidModifyStrings(): iterable
93+
public static function provideInvalidModifyStrings(): iterable
9494
{
9595
yield 'Named holiday is not recognized' => [
9696
'Halloween',

0 commit comments

Comments
 (0)