@@ -204,7 +204,7 @@ |
||
204 | 204 | |
205 | 205 | /** |
206 | 206 | * @param string $path |
207 | - * @return INode|null |
|
207 | + * @return null|Node |
|
208 | 208 | */ |
209 | 209 | protected function getNodeForPath($path){ |
210 | 210 | $node = parent::getNodeForPath($path); |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | * @param string $path |
175 | 175 | * @throws \OCP\Files\NotFoundException |
176 | 176 | * @throws \OCP\Files\NotPermittedException |
177 | - * @return File|Folder |
|
177 | + * @return string |
|
178 | 178 | */ |
179 | 179 | public function get($path) { |
180 | 180 | $path = $this->normalizePath($path); |
@@ -371,6 +371,9 @@ discard block |
||
371 | 371 | |
372 | 372 | } |
373 | 373 | |
374 | + /** |
|
375 | + * @param string $fullPath |
|
376 | + */ |
|
374 | 377 | private function resolveVirtualNode($fullPath) { |
375 | 378 | $pieces = explode('/', $fullPath); |
376 | 379 | if ($pieces[1] !== 'meta') { |
@@ -920,7 +920,7 @@ discard block |
||
920 | 920 | * @param int $previewWidth |
921 | 921 | * @param int $previewHeight |
922 | 922 | * |
923 | - * @return int[] |
|
923 | + * @return double[] |
|
924 | 924 | */ |
925 | 925 | private function scale($image, $askedWidth, $askedHeight, $previewWidth, $previewHeight) { |
926 | 926 | $scalingUp = $this->getScalingUp(); |
@@ -1083,6 +1083,7 @@ discard block |
||
1083 | 1083 | /** |
1084 | 1084 | * Returns the path to the folder where the previews are stored, identified by the fileId |
1085 | 1085 | * |
1086 | + * @param integer $fileId |
|
1086 | 1087 | * @return string |
1087 | 1088 | */ |
1088 | 1089 | private function getPreviewPath($fileId = null) { |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | |
48 | 48 | /** |
49 | 49 | * @param string $table name |
50 | - * @return int id of last insert statement |
|
50 | + * @return string id of last insert statement |
|
51 | 51 | */ |
52 | 52 | public function lastInsertId($table) { |
53 | 53 | return $this->conn->realLastInsertId($table); |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | /** |
120 | 120 | * Inserts, or updates a row into the database. Returns the inserted or updated rows |
121 | - * @param $table string table name including **PREFIX** |
|
121 | + * @param string $table string table name including **PREFIX** |
|
122 | 122 | * @param $input array the key=>value pairs to insert into the db row |
123 | 123 | * @param $compare array columns that should be compared to look for existing arrays |
124 | 124 | * @return int the number of rows affected by the operation |
@@ -672,7 +672,7 @@ discard block |
||
672 | 672 | * Set the flag to true, so that the file would be |
673 | 673 | * in the decrypted state. |
674 | 674 | * |
675 | - * @param $isDisabled bool |
|
675 | + * @param boolean $isDisabled bool |
|
676 | 676 | */ |
677 | 677 | public static function setDisableWriteEncryption($isDisabled) { |
678 | 678 | self::$disableWriteEncryption = $isDisabled; |
@@ -929,7 +929,7 @@ discard block |
||
929 | 929 | /** |
930 | 930 | * return header size of given file |
931 | 931 | * |
932 | - * @param string|resource $path |
|
932 | + * @param string $path |
|
933 | 933 | * @return int |
934 | 934 | */ |
935 | 935 | protected function getHeaderSize($path) { |
@@ -980,7 +980,7 @@ discard block |
||
980 | 980 | /** |
981 | 981 | * read header from file |
982 | 982 | * |
983 | - * @param string|resource $path |
|
983 | + * @param string $path |
|
984 | 984 | * @return array |
985 | 985 | */ |
986 | 986 | protected function getHeader($path) { |
@@ -1076,7 +1076,7 @@ discard block |
||
1076 | 1076 | /** |
1077 | 1077 | * check if path points to a files version |
1078 | 1078 | * |
1079 | - * @param $path |
|
1079 | + * @param string $path |
|
1080 | 1080 | * @return bool |
1081 | 1081 | */ |
1082 | 1082 | protected function isVersion($path) { |
@@ -449,7 +449,7 @@ |
||
449 | 449 | * In some environments the system config file is readonly. Find out if this |
450 | 450 | * is the case. |
451 | 451 | * |
452 | - * @return boolean |
|
452 | + * @return false|string |
|
453 | 453 | * @since 10.0.3 |
454 | 454 | */ |
455 | 455 | public function isSystemConfigReadOnly() { |
@@ -699,7 +699,7 @@ |
||
699 | 699 | } |
700 | 700 | |
701 | 701 | /** |
702 | - * @param $internalPath |
|
702 | + * @param string $internalPath |
|
703 | 703 | * @return array |
704 | 704 | */ |
705 | 705 | private function convertInternalPathToGlobalPath($internalPath) { |
@@ -310,6 +310,9 @@ |
||
310 | 310 | } |
311 | 311 | |
312 | 312 | |
313 | + /** |
|
314 | + * @param string $revision |
|
315 | + */ |
|
313 | 316 | public static function restoreVersion($uid, $filename, $fileToRestore, $revision) { |
314 | 317 | if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED) !== true) { |
315 | 318 | return false; |
@@ -257,6 +257,9 @@ discard block |
||
257 | 257 | 'file', 'create'); |
258 | 258 | } |
259 | 259 | |
260 | + /** |
|
261 | + * @param string $path |
|
262 | + */ |
|
260 | 263 | private function getPartFileBasePath($path) { |
261 | 264 | $partFileInStorage = \OC::$server->getConfig()->getSystemValue('part_file_in_storage', true); |
262 | 265 | if ($partFileInStorage) { |
@@ -626,7 +629,7 @@ discard block |
||
626 | 629 | /** |
627 | 630 | * Set $algo to get a specific checksum, leave null to get all checksums |
628 | 631 | * (space seperated) |
629 | - * @param null $algo |
|
632 | + * @param string $algo |
|
630 | 633 | * @return string |
631 | 634 | */ |
632 | 635 | public function getChecksum($algo = null) { |
@@ -649,6 +652,9 @@ discard block |
||
649 | 652 | return ''; |
650 | 653 | } |
651 | 654 | |
655 | + /** |
|
656 | + * @param string $string |
|
657 | + */ |
|
652 | 658 | protected function header($string) { |
653 | 659 | \header($string); |
654 | 660 | } |