Fixed indentation

This commit is contained in:
Alejandro Celaya 2022-01-10 13:21:12 +01:00
parent 5b3c6f7752
commit 34512da2fb

View File

@ -18,9 +18,9 @@ class ShortUrlStringifier implements ShortUrlStringifierInterface
public function stringify(ShortUrl $shortUrl): string
{
$uriWithoutShortCode = (new Uri())->withScheme($this->domainConfig['schema'] ?? 'http')
->withHost($this->resolveDomain($shortUrl))
->withPath($this->basePath)
->__toString();
->withHost($this->resolveDomain($shortUrl))
->withPath($this->basePath)
->__toString();
// The short code needs to be appended to avoid it from being URL-encoded
return sprintf('%s/%s', $uriWithoutShortCode, $shortUrl->getShortCode());