@@ -49,7 +49,7 @@ public function testNormalize(): void
49
49
]);
50
50
51
51
$ normalizer = new ObjectNormalizer (
52
- $ serializerProphecy ->reveal (), // @phpstan-ignore-line
52
+ $ serializerProphecy ->reveal (),
53
53
$ iriConverterProphecy ->reveal (),
54
54
$ contextBuilderProphecy ->reveal ()
55
55
);
@@ -78,7 +78,7 @@ public function testNormalizeEmptyArray(): void
78
78
$ contextBuilderProphecy ->getAnonymousResourceContext ($ dummy , Argument::type ('array ' ))->shouldNotBeCalled ();
79
79
80
80
$ normalizer = new ObjectNormalizer (
81
- $ serializerProphecy ->reveal (), // @phpstan-ignore-line
81
+ $ serializerProphecy ->reveal (),
82
82
$ iriConverterProphecy ->reveal (),
83
83
$ contextBuilderProphecy ->reveal ()
84
84
);
@@ -102,7 +102,7 @@ public function testNormalizeWithOutput(): void
102
102
$ contextBuilderProphecy ->getAnonymousResourceContext ($ dummy , ['api_resource ' => $ dummy , 'iri ' => '/dummy/1234 ' ])->shouldBeCalled ()->willReturn (['@id ' => '/dummy/1234 ' , '@type ' => 'Dummy ' , '@context ' => []]);
103
103
104
104
$ normalizer = new ObjectNormalizer (
105
- $ serializerProphecy ->reveal (), // @phpstan-ignore-line
105
+ $ serializerProphecy ->reveal (),
106
106
$ iriConverterProphecy ->reveal (),
107
107
$ contextBuilderProphecy ->reveal ()
108
108
);
@@ -132,7 +132,7 @@ public function testNormalizeWithContext(): void
132
132
$ contextBuilderProphecy ->getAnonymousResourceContext ($ dummy , ['api_resource ' => $ dummy , 'has_context ' => true , 'iri ' => '/dummy/1234 ' ])->shouldBeCalled ()->willReturn (['@id ' => '/dummy/1234 ' , '@type ' => 'Dummy ' ]);
133
133
134
134
$ normalizer = new ObjectNormalizer (
135
- $ serializerProphecy ->reveal (), // @phpstan-ignore-line
135
+ $ serializerProphecy ->reveal (),
136
136
$ iriConverterProphecy ->reveal (),
137
137
$ contextBuilderProphecy ->reveal ()
138
138
);
0 commit comments