Skip to content

Commit 54daaf9

Browse files
committed
cs fix
1 parent 5aa44db commit 54daaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tests/Unit/RequestHandler/RequestHandlerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function testHandle(): void
3131

3232
/** @var StreamInterface|MockObject $body */
3333
$body = $this->getMockByCalls(StreamInterface::class, [
34-
Call::create('write')->with(new ArgumentCallback(function (string $body): void {
34+
Call::create('write')->with(new ArgumentCallback(static function (string $body): void {
3535
$data = json_decode($body, true);
3636

3737
self::assertArrayHasKey('datetime', $data);

0 commit comments

Comments
 (0)