diff --git a/app/Support/Media/PublicUrlGenerator.php b/app/Support/Media/PublicUrlGenerator.php deleted file mode 100644 index 691a5128..00000000 --- a/app/Support/Media/PublicUrlGenerator.php +++ /dev/null @@ -1,49 +0,0 @@ -getPathRelativeToRoot()); - } - - /** - * Get the temporary url for a media item. - * - * @param DateTimeInterface $expiration - * @param array $options - * - * @return string - */ - public function getTemporaryUrl(DateTimeInterface $expiration, array $options = []): string - { - throw UrlCannotBeDetermined::filesystemDoesNotSupportTemporaryUrls(); - } - - /** - * Get the url to the directory containing responsive images. - * - * @return string - */ - public function getResponsiveImagesDirectoryUrl(): string - { - return public_asset('/').'/'.$this->pathGenerator->getPathForResponsiveImages($this->media); - } -}