Commit b0fd1077 authored by Александр Плохих's avatar Александр Плохих 🌔
Browse files

rm manula http status init in response

parent 4ebf14ce
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -22,9 +22,6 @@ class SortPriceController extends AbstractController
    #[Route('/sort/price', name: 'app_sort_price', methods: ['POST'])]
    public function index(PricesRequest $request, SortPriceAction $action): JsonResponse
    {
        return new JsonResponse(
            $action->act($request->serialise()),
            200
        );
        return new JsonResponse($action->act($request->serialise()));
    }
}