| 1 | <?php | ||
| 8 | class AzureBlobUrlGenerator extends BaseUrlGenerator | ||
| 9 | { | ||
| 10 | /** | ||
| 11 | * Get the url for the profile of a media item. | ||
| 12 | * | ||
| 13 | * @return string | ||
| 14 | */ | ||
| 15 | public function getUrl() : string | ||
| 19 | |||
| 20 | /** | ||
| 21 | * Get the temporary url for a media item. | ||
| 22 | * | ||
| 23 | * @param \DateTimeInterface $expiration | ||
| 24 | * @param array $options | ||
| 25 | * | ||
| 26 | * @return string | ||
| 27 | */ | ||
| 28 | public function getTemporaryUrl(DateTimeInterface $expiration, array $options = []): string | ||
| 35 | |||
| 36 | /** | ||
| 37 | * Get the url for the profile of a media item. | ||
| 38 | * | ||
| 39 | * @return string | ||
| 40 | */ | ||
| 41 | public function getPath(): string | ||
| 45 | |||
| 46 | /** | ||
| 47 | * Get the url to the directory containing responsive images. | ||
| 48 | * | ||
| 49 | * @return string | ||
| 50 | */ | ||
| 51 | public function getResponsiveImagesDirectoryUrl(): string | ||
| 56 | } | ||
| 57 |