@@ -246,7 +246,7 @@ public function testHydrateBooleanProperty($value, $expected): void
246246 $ this ->assertSame ($ expected , $ object ->value );
247247 }
248248
249- public function booleanValueProvider (): array
249+ public static function booleanValueProvider (): array
250250 {
251251 return [
252252 [true , true ],
@@ -280,7 +280,7 @@ public function testHydrateIntegerProperty($value, $expected): void
280280 $ this ->assertSame ($ expected , $ object ->value );
281281 }
282282
283- public function integerValueProvider (): array
283+ public static function integerValueProvider (): array
284284 {
285285 return [
286286 [42 , 42 ],
@@ -306,7 +306,7 @@ public function testHydrateNumberProperty($value, $expected): void
306306 $ this ->assertSame ($ expected , $ object ->value );
307307 }
308308
309- public function numberValueProvider (): array
309+ public static function numberValueProvider (): array
310310 {
311311 return [
312312 [42 , 42.0 ],
@@ -438,7 +438,7 @@ public function testHydrateDateTimeImmutableProperty($value, $expected): void
438438 $ this ->assertSame ($ expected , $ object ->value ->format ('Y-m-d ' ));
439439 }
440440
441- public function timestampValueProvider (): array
441+ public static function timestampValueProvider (): array
442442 {
443443 return [
444444 [1262304000 , '2010-01-01 ' ],
@@ -577,7 +577,7 @@ public function testHydrateStringableEnumProperty($value, $expected): void
577577 $ this ->assertSame ($ expected , $ object ->value );
578578 }
579579
580- public function stringableEnumValueProvider (): array
580+ public static function stringableEnumValueProvider (): array
581581 {
582582 return [
583583 ['c1200a7e-136e-4a11-9bc3-cc937046e90f ' , Fixtures \StringableEnum::foo],
@@ -615,7 +615,7 @@ public function testHydrateNumerableEnumProperty($value, $expected): void
615615 $ this ->assertSame ($ expected , $ object ->value );
616616 }
617617
618- public function numerableEnumValueProvider (): array
618+ public static function numerableEnumValueProvider (): array
619619 {
620620 return [
621621 [1 , Fixtures \NumerableEnum::foo],
0 commit comments