deleteShortUrlService = $deleteShortUrlService; } public function handle(ServerRequestInterface $request): ResponseInterface { $shortCode = $request->getAttribute('shortCode', ''); $this->deleteShortUrlService->deleteByShortCode($shortCode); return new EmptyResponse(); } }