From 6656ba1f94428dd2097795f17f65a7dbede27686 Mon Sep 17 00:00:00 2001 From: apple-yagi Date: Wed, 9 Oct 2024 14:50:20 +0900 Subject: [PATCH] Fix phpdoc for ResultFile's getContents function --- lib/ConvertApi/ResultFile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ConvertApi/ResultFile.php b/lib/ConvertApi/ResultFile.php index e84ec62..9ac2be6 100644 --- a/lib/ConvertApi/ResultFile.php +++ b/lib/ConvertApi/ResultFile.php @@ -36,7 +36,7 @@ function getFileSize() } /** - * @return string Converted file contents + * @return false|string Converted file contents */ function getContents() { @@ -57,4 +57,4 @@ function save($path) return ConvertApi::client()->download($this->getUrl(), $path); } -} \ No newline at end of file +}