Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
Fix Symfony 5.1 deprecation
Browse files Browse the repository at this point in the history
Since symfony/http-foundation 5.1: The "Symfony\Component\HttpFoundation\Response::create()" method is deprecated, use "new Symfony\Component\HttpFoundation\Response()" instead.
  • Loading branch information
jdreesen authored and othillo committed Jun 15, 2020
1 parent 336b79f commit f5d262a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JsonRequestTransformerListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function onKernelRequest(RequestEvent $event): void
}

if (!$this->transformJsonBody($request)) {
$response = Response::create('Unable to parse request.', Response::HTTP_BAD_REQUEST);
$response = new Response('Unable to parse request.', Response::HTTP_BAD_REQUEST);
$event->setResponse($response);
}
}
Expand Down

0 comments on commit f5d262a

Please # to comment.