File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,12 @@ public function testThatGetSerializeContextReturnsExpectedWhenUsingPopulateAll()
207207 $ serializer = $ this ->createMock (SerializerInterface::class);
208208 $ resource = static ::getContainer ()->get (ApiKeyResource::class);
209209
210- $ request = Request::create ('' , parameters: ['populateAll ' => true ]);
210+ $ request = Request::create (
211+ '' ,
212+ parameters: [
213+ 'populateAll ' => true ,
214+ ],
215+ );
211216
212217 $ output = (new ResponseHandler ($ serializer ))->getSerializeContext ($ request , $ resource );
213218
@@ -235,7 +240,12 @@ public function testThatGetSerializeContextReturnsExpectedWhenUsingPopulateOnly(
235240 $ serializer = $ this ->createMock (SerializerInterface::class);
236241 $ resource = static ::getContainer ()->get (ApiKeyResource::class);
237242
238- $ request = Request::create ('' , parameters: ['populateOnly ' => true ]);
243+ $ request = Request::create (
244+ '' ,
245+ parameters: [
246+ 'populateOnly ' => true ,
247+ ],
248+ );
239249
240250 $ output = (new ResponseHandler ($ serializer ))->getSerializeContext ($ request , $ resource );
241251
You can’t perform that action at this time.
0 commit comments