@@ -49,7 +49,7 @@ |
||
49 | 49 | /** |
50 | 50 | * Indicates what type of match was found for the result |
51 | 51 | * |
52 | - * @return bool |
|
52 | + * @return string |
|
53 | 53 | */ |
54 | 54 | public function getMatchType() |
55 | 55 | { |
@@ -134,7 +134,6 @@ |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
137 | - * @param string $tag |
|
138 | 137 | * |
139 | 138 | * @return bool |
140 | 139 | */ |
@@ -755,7 +755,7 @@ discard block |
||
755 | 755 | /** |
756 | 756 | * Upload file in sessions/chunks |
757 | 757 | * |
758 | - * @param string|DropboxFile $dropboxFile DropboxFile object or Path to file |
|
758 | + * @param DropboxFile $dropboxFile DropboxFile object or Path to file |
|
759 | 759 | * @param string $path Path to save the file to, on Dropbox |
760 | 760 | * @param int $fileSize The size of the file |
761 | 761 | * @param int $chunkSize The amount of data to upload in each chunk |
@@ -820,7 +820,7 @@ discard block |
||
820 | 820 | /** |
821 | 821 | * Start an Upload Session |
822 | 822 | * |
823 | - * @param string|DropboxFile $dropboxFile DropboxFile object or Path to file |
|
823 | + * @param string $dropboxFile DropboxFile object or Path to file |
|
824 | 824 | * @param int $chunkSize Size of file chunk to upload |
825 | 825 | * @param boolean $close Closes the session for "appendUploadSession" |
826 | 826 | * |
@@ -874,7 +874,7 @@ discard block |
||
874 | 874 | /** |
875 | 875 | * Append more data to an Upload Session |
876 | 876 | * |
877 | - * @param string|DropboxFile $dropboxFile DropboxFile object or Path to file |
|
877 | + * @param DropboxFile $dropboxFile DropboxFile object or Path to file |
|
878 | 878 | * @param string $sessionId Session ID returned by `startUploadSession` |
879 | 879 | * @param int $offset The amount of data that has been uploaded so far |
880 | 880 | * @param int $chunkSize The amount of data to upload |
@@ -916,7 +916,7 @@ discard block |
||
916 | 916 | /** |
917 | 917 | * Finish an upload session and save the uploaded data to the given file path |
918 | 918 | * |
919 | - * @param string|DropboxFile $dropboxFile DropboxFile object or Path to file |
|
919 | + * @param DropboxFile $dropboxFile DropboxFile object or Path to file |
|
920 | 920 | * @param string $sessionId Session ID returned by `startUploadSession` |
921 | 921 | * @param int $offset The amount of data that has been uploaded so far |
922 | 922 | * @param int $remaining The amount of data that is remaining |
@@ -957,7 +957,7 @@ discard block |
||
957 | 957 | /** |
958 | 958 | * Upload a File to Dropbox in a single request |
959 | 959 | * |
960 | - * @param string|DropboxFile $dropboxFile DropboxFile object or Path to file |
|
960 | + * @param DropboxFile $dropboxFile DropboxFile object or Path to file |
|
961 | 961 | * @param string $path Path to upload the file to |
962 | 962 | * @param array $params Additional Params |
963 | 963 | * |