Skip to content

Commit f6a959b

Browse files
Merge branch '5.4' into 6.2
* 5.4: Migrate to `static` data providers using `rector/rector`
1 parent 3d6cc71 commit f6a959b

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)