Skip to content

Commit f3adc98

Browse files
Merge branch '5.4' into 6.2
* 5.4: Migrate to `static` data providers using `rector/rector`
2 parents a61866e + f83692c commit f3adc98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/StopwatchPeriodTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function testGetDuration($start, $end, $useMorePrecision, $duration)
4343
$this->assertEqualsWithDelta($duration, $period->getDuration(), \PHP_FLOAT_EPSILON);
4444
}
4545

46-
public function provideTimeValues()
46+
public static function provideTimeValues()
4747
{
4848
yield [0, false, 0];
4949
yield [0, true, 0.0];
@@ -53,7 +53,7 @@ public function provideTimeValues()
5353
yield [2.71, true, 2.71];
5454
}
5555

56-
public function provideDurationValues()
56+
public static function provideDurationValues()
5757
{
5858
yield [0, 0, false, 0];
5959
yield [0, 0, true, 0.0];

0 commit comments

Comments
 (0)