Fix line length.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-07-30 13:01:17 -05:00
parent 7874ac92b4
commit 5806152eb5
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ class BrowserIconCustomAsset extends AbstractCustomAsset
protected function getDefaultUrl(): string
{
return $this->environment->getAssetUrl() . '/icons/' . $this->environment->getAppEnvironment() . '/original.png';
$assetUrl = $this->environment->getAssetUrl();
return $assetUrl . '/icons/' . $this->environment->getAppEnvironment() . '/original.png';
}
public function upload(Image $image): void