Skip to content

Commit

Permalink
whitespace style change
Browse files Browse the repository at this point in the history
Signed-off-by: Lewis <[email protected]>
  • Loading branch information
Lewis committed Jun 29, 2024
1 parent 5569265 commit d6b28cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Classes/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public function destinationUrl(string $url): self
$allowedPrefixes = array_merge($defaultAllowedPrefixes, $additionalAllowedPrefixes);

if (! Str::startsWith($url, $allowedPrefixes)) {
throw new ShortURLException('The destination URL must begin with an allowed prefix: '. implode(', ', $allowedPrefixes));
throw new ShortURLException('The destination URL must begin with an allowed prefix: '.implode(', ', $allowedPrefixes));
}

$this->destinationUrl = $url;
Expand Down

0 comments on commit d6b28cf

Please sign in to comment.