buildShortUrlData($request); $shortUrl = $this->urlShortener->shorten($shortUrlMeta); return new JsonResponse($this->transformer->transform($shortUrl)); } /** * @throws ValidationException */ abstract protected function buildShortUrlData(Request $request): ShortUrlMeta; }