Skip to content

Commit 1766136

Browse files
committed
Fix incorrect typehinting
Signed-off-by: Andrew Welch <andrew@nystudio107.com>
1 parent b147233 commit 1766136

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/variables/TranscoderVariable.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ public function getVideoUrl($filePath, $videoOptions): string
4444
* @param $filePath
4545
* @param $thumbnailOptions
4646
*
47-
* @return string
47+
* @return string|false|null URL or path of the video thumbnail
4848
*/
49-
public function getVideoThumbnailUrl($filePath, $thumbnailOptions): string
49+
public function getVideoThumbnailUrl($filePath, $thumbnailOptions)
5050
{
5151
return Transcoder::$plugin->transcode->getVideoThumbnailUrl($filePath, $thumbnailOptions);
5252
}

0 commit comments

Comments
 (0)