Skip to content

Commit 186ab7b

Browse files
committed
Code style fix
1 parent 550ad19 commit 186ab7b

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

tests/Integration/Rest/ResponseHandlerTest.php

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)