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

Commit

Permalink
Use constant instead of magic number for response status code
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored and othillo committed Jun 7, 2020
1 parent 4f5d427 commit 336b79f
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.', 400);
$response = Response::create('Unable to parse request.', Response::HTTP_BAD_REQUEST);
$event->setResponse($response);
}
}
Expand Down

0 comments on commit 336b79f

Please # to comment.