mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
Fixed indentation
This commit is contained in:
parent
5b3c6f7752
commit
34512da2fb
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user