Skip to content

Commit

Permalink
Use constant instead of magic number for response status code (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored Jun 19, 2020
1 parent 9d923ca commit 649e9da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EventListener/RequestTransformerListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function onKernelRequest(RequestEvent $event): void
}

if (false === $this->transform($request)) {
$response = new Response('Unable to parse request.', 400);
$response = new Response('Unable to parse request.', Response::HTTP_BAD_REQUEST);

$event->setResponse($response);
}
Expand Down

0 comments on commit 649e9da

Please sign in to comment.