| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | 2 | public function handle(Request $request): Response |
|
| 30 | { |
||
| 31 | 2 | $transformer = new ShortUrlDataTransformer($this->domainConfig); |
|
| 32 | 2 | $url = $this->urlResolver->resolveShortUrl(ShortUrlIdentifier::fromApiRequest($request)); |
|
| 33 | |||
| 34 | 2 | return new JsonResponse($transformer->transform($url)); |
|
| 35 | } |
||
| 37 |