@@ -822,7 +822,7 @@ public function onEntireEntityUpdated($oldValue)
822
822
self ::assertNull ($ object ->string );
823
823
})
824
824
;
825
- }, 80100 ];
825
+ }];
826
826
827
827
yield 'Enum: (de)hydrates correctly ' => [function () {
828
828
return HydrationTest::create (new class {
@@ -841,7 +841,7 @@ public function onEntireEntityUpdated($oldValue)
841
841
self ::assertSame ('active ' , $ object ->string ->value );
842
842
})
843
843
;
844
- }, 80100 ];
844
+ }];
845
845
846
846
yield 'Enum: writable enums can be changed ' => [function () {
847
847
return HydrationTest::create (new class {
@@ -854,7 +854,7 @@ public function onEntireEntityUpdated($oldValue)
854
854
self ::assertSame (1 , $ object ->int ->value );
855
855
})
856
856
;
857
- }, 80100 ];
857
+ }];
858
858
859
859
yield 'Enum: null-like enum values are handled correctly ' => [function () {
860
860
return HydrationTest::create (new class {
@@ -884,7 +884,7 @@ public function onEntireEntityUpdated($oldValue)
884
884
self ::assertSame (EmptyStringEnum::EMPTY , $ object ->emptyString );
885
885
})
886
886
;
887
- }, 80100 ];
887
+ }];
888
888
889
889
yield 'Enum: nullable enum with invalid value sets to null ' => [function () {
890
890
return HydrationTest::create (new class {
@@ -898,7 +898,7 @@ public function onEntireEntityUpdated($oldValue)
898
898
self ::assertNull ($ object ->int );
899
899
})
900
900
;
901
- }, 80100 ];
901
+ }];
902
902
903
903
yield 'Object: (de)hydrates DTO correctly ' => [function () {
904
904
return HydrationTest::create (new class {
@@ -1612,7 +1612,7 @@ public static function provideInvalidHydrationTests(): iterable
1612
1612
// non-nullable change is rejected (1=LOW)
1613
1613
self ::assertSame (1 , $ object ->nonNullableInt ->value );
1614
1614
});
1615
- }, 80100 ];
1615
+ }];
1616
1616
1617
1617
yield 'writable_path_with_type_problem_ignored ' => [function () {
1618
1618
return HydrationTest::create (new class {
0 commit comments