Skip to content

Commit 83ce4e1

Browse files
committed
Fix PHPUnit failing for missing static
1 parent 26e42a1 commit 83ce4e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/dataProvider-error/GigasecondTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function dateSetup($date): DateTimeImmutable
3737
return new DateTimeImmutable($date, $UTC);
3838
}
3939

40-
public function inputAndExpectedDates(): array
40+
public static function inputAndExpectedDates(): array
4141
{
4242
return [
4343
['2011-04-25', '2043-01-01 01:46:40'],
@@ -48,7 +48,7 @@ public function inputAndExpectedDates(): array
4848
];
4949
}
5050

51-
public function inputDates(): array
51+
public static function inputDates(): array
5252
{
5353
return [
5454
['2011-04-25'],

0 commit comments

Comments
 (0)