@@ -37,7 +37,7 @@ |
||
37 | 37 | new JsonResponse( |
38 | 38 | $responseObject, |
39 | 39 | $exception->getStatusCode(), |
40 | - [...$exception->getHeaders(), 'Content-Type' => 'application/problem+' . $format], |
|
40 | + [...$exception->getHeaders(), 'Content-Type' => 'application/problem+'.$format], |
|
41 | 41 | true |
42 | 42 | ) |
43 | 43 | ); |
@@ -53,7 +53,7 @@ |
||
53 | 53 | try { |
54 | 54 | $obj = $this->serialize($request, $argument, $format); |
55 | 55 | } catch (\TypeError | NotEncodableValueException $e) { |
56 | - $problemMimeType = 'application/problem+' . $format; |
|
56 | + $problemMimeType = 'application/problem+'.$format; |
|
57 | 57 | |
58 | 58 | throw new HttpException( |
59 | 59 | 400, |