@@ -110,6 +110,9 @@ |
||
110 | 110 | return parent::moveFromCache($sourceCache, $sourcePath, $targetPath); |
111 | 111 | } |
112 | 112 | |
113 | + /** |
|
114 | + * @param ICacheEntry $entry |
|
115 | + */ |
|
113 | 116 | protected function formatCacheEntry($entry) { |
114 | 117 | $path = isset($entry['path']) ? $entry['path'] : ''; |
115 | 118 | $entry = parent::formatCacheEntry($entry); |
@@ -29,7 +29,6 @@ |
||
29 | 29 | |
30 | 30 | use OC\Files\Cache\Wrapper\CacheJail; |
31 | 31 | use OCP\Files\Cache\ICacheEntry; |
32 | -use OCP\Files\Storage\IStorage; |
|
33 | 32 | |
34 | 33 | /** |
35 | 34 | * Metadata cache for shared files |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * |
159 | 159 | * By default this excludes the automatically generated birthday calendar |
160 | 160 | * |
161 | - * @param $principalUri |
|
161 | + * @param string $principalUri |
|
162 | 162 | * @param bool $excludeBirthday |
163 | 163 | * @return int |
164 | 164 | */ |
@@ -304,6 +304,9 @@ discard block |
||
304 | 304 | return array_values($calendars); |
305 | 305 | } |
306 | 306 | |
307 | + /** |
|
308 | + * @param string $principalUri |
|
309 | + */ |
|
307 | 310 | public function getUsersOwnCalendars($principalUri) { |
308 | 311 | $principalUri = $this->convertPrincipal($principalUri, true); |
309 | 312 | $fields = array_values($this->propertyMap); |
@@ -878,7 +881,7 @@ discard block |
||
878 | 881 | * calendar-data. If the result of a subsequent GET to this object is not |
879 | 882 | * the exact same as this request body, you should omit the ETag. |
880 | 883 | * |
881 | - * @param mixed $calendarId |
|
884 | + * @param integer $calendarId |
|
882 | 885 | * @param string $objectUri |
883 | 886 | * @param string $calendarData |
884 | 887 | * @return string |
@@ -1370,7 +1373,7 @@ discard block |
||
1370 | 1373 | * @param string $principalUri |
1371 | 1374 | * @param string $uri |
1372 | 1375 | * @param array $properties |
1373 | - * @return mixed |
|
1376 | + * @return integer |
|
1374 | 1377 | */ |
1375 | 1378 | function createSubscription($principalUri, $uri, array $properties) { |
1376 | 1379 | |
@@ -1783,6 +1786,9 @@ discard block |
||
1783 | 1786 | return $this->sharingBackend->applyShareAcl($resourceId, $acl); |
1784 | 1787 | } |
1785 | 1788 | |
1789 | + /** |
|
1790 | + * @param boolean $toV2 |
|
1791 | + */ |
|
1786 | 1792 | private function convertPrincipal($principalUri, $toV2) { |
1787 | 1793 | if ($this->principalBackend->getPrincipalPrefix() === 'principals') { |
1788 | 1794 | list(, $name) = URLUtil::splitPath($principalUri); |
@@ -360,6 +360,9 @@ discard block |
||
360 | 360 | } |
361 | 361 | } |
362 | 362 | |
363 | + /** |
|
364 | + * @param string $root |
|
365 | + */ |
|
363 | 366 | static public function init($user, $root) { |
364 | 367 | if (self::$defaultInstance) { |
365 | 368 | return false; |
@@ -528,7 +531,7 @@ discard block |
||
528 | 531 | /** |
529 | 532 | * mount an \OC\Files\Storage\Storage in our virtual filesystem |
530 | 533 | * |
531 | - * @param \OC\Files\Storage\Storage|string $class |
|
534 | + * @param string $class |
|
532 | 535 | * @param array $arguments |
533 | 536 | * @param string $mountpoint |
534 | 537 | */ |
@@ -660,6 +663,9 @@ discard block |
||
660 | 663 | return self::$defaultInstance->is_dir($path); |
661 | 664 | } |
662 | 665 | |
666 | + /** |
|
667 | + * @param string $path |
|
668 | + */ |
|
663 | 669 | static public function is_file($path) { |
664 | 670 | return self::$defaultInstance->is_file($path); |
665 | 671 | } |
@@ -672,6 +678,9 @@ discard block |
||
672 | 678 | return self::$defaultInstance->filetype($path); |
673 | 679 | } |
674 | 680 | |
681 | + /** |
|
682 | + * @param string $path |
|
683 | + */ |
|
675 | 684 | static public function filesize($path) { |
676 | 685 | return self::$defaultInstance->filesize($path); |
677 | 686 | } |
@@ -684,6 +693,9 @@ discard block |
||
684 | 693 | return self::$defaultInstance->isCreatable($path); |
685 | 694 | } |
686 | 695 | |
696 | + /** |
|
697 | + * @param string $path |
|
698 | + */ |
|
687 | 699 | static public function isReadable($path) { |
688 | 700 | return self::$defaultInstance->isReadable($path); |
689 | 701 | } |
@@ -696,6 +708,9 @@ discard block |
||
696 | 708 | return self::$defaultInstance->isDeletable($path); |
697 | 709 | } |
698 | 710 | |
711 | + /** |
|
712 | + * @param string $path |
|
713 | + */ |
|
699 | 714 | static public function isSharable($path) { |
700 | 715 | return self::$defaultInstance->isSharable($path); |
701 | 716 | } |
@@ -704,6 +719,9 @@ discard block |
||
704 | 719 | return self::$defaultInstance->file_exists($path); |
705 | 720 | } |
706 | 721 | |
722 | + /** |
|
723 | + * @param string $path |
|
724 | + */ |
|
707 | 725 | static public function filemtime($path) { |
708 | 726 | return self::$defaultInstance->filemtime($path); |
709 | 727 | } |
@@ -713,6 +731,7 @@ discard block |
||
713 | 731 | } |
714 | 732 | |
715 | 733 | /** |
734 | + * @param string $path |
|
716 | 735 | * @return string |
717 | 736 | */ |
718 | 737 | static public function file_get_contents($path) { |
@@ -735,6 +754,10 @@ discard block |
||
735 | 754 | return self::$defaultInstance->copy($path1, $path2); |
736 | 755 | } |
737 | 756 | |
757 | + /** |
|
758 | + * @param string $path |
|
759 | + * @param string $mode |
|
760 | + */ |
|
738 | 761 | static public function fopen($path, $mode) { |
739 | 762 | return self::$defaultInstance->fopen($path, $mode); |
740 | 763 | } |
@@ -750,6 +773,9 @@ discard block |
||
750 | 773 | return self::$defaultInstance->fromTmpFile($tmpFile, $path); |
751 | 774 | } |
752 | 775 | |
776 | + /** |
|
777 | + * @param string $path |
|
778 | + */ |
|
753 | 779 | static public function getMimeType($path) { |
754 | 780 | return self::$defaultInstance->getMimeType($path); |
755 | 781 | } |
@@ -762,6 +788,9 @@ discard block |
||
762 | 788 | return self::$defaultInstance->free_space($path); |
763 | 789 | } |
764 | 790 | |
791 | + /** |
|
792 | + * @param string $query |
|
793 | + */ |
|
765 | 794 | static public function search($query) { |
766 | 795 | return self::$defaultInstance->search($query); |
767 | 796 | } |
@@ -870,7 +899,7 @@ discard block |
||
870 | 899 | * @param string $path |
871 | 900 | * @param boolean $includeMountPoints whether to add mountpoint sizes, |
872 | 901 | * defaults to true |
873 | - * @return \OC\Files\FileInfo|bool False if file does not exist |
|
902 | + * @return \OCP\Files\FileInfo|null False if file does not exist |
|
874 | 903 | */ |
875 | 904 | public static function getFileInfo($path, $includeMountPoints = true) { |
876 | 905 | return self::$defaultInstance->getFileInfo($path, $includeMountPoints); |
@@ -64,7 +64,6 @@ |
||
64 | 64 | use OC\Files\Storage\StorageFactory; |
65 | 65 | use OC\Lockdown\Filesystem\NullStorage; |
66 | 66 | use OCP\Files\Config\IMountProvider; |
67 | -use OCP\Files\Mount\IMountPoint; |
|
68 | 67 | use OCP\Files\NotFoundException; |
69 | 68 | use OCP\IUserManager; |
70 | 69 |
@@ -984,7 +984,7 @@ discard block |
||
984 | 984 | /** |
985 | 985 | * check if path points to a files version |
986 | 986 | * |
987 | - * @param $path |
|
987 | + * @param string $path |
|
988 | 988 | * @return bool |
989 | 989 | */ |
990 | 990 | protected function isVersion($path) { |
@@ -995,7 +995,7 @@ discard block |
||
995 | 995 | /** |
996 | 996 | * check if the given storage should be encrypted or not |
997 | 997 | * |
998 | - * @param $path |
|
998 | + * @param string $path |
|
999 | 999 | * @return bool |
1000 | 1000 | */ |
1001 | 1001 | protected function shouldEncrypt($path) { |
@@ -25,7 +25,6 @@ |
||
25 | 25 | namespace OCA\DAV\AppInfo; |
26 | 26 | |
27 | 27 | use OCA\DAV\CalDAV\Activity\Backend; |
28 | -use OCA\DAV\CalDAV\Activity\Extension; |
|
29 | 28 | use OCA\DAV\CalDAV\Activity\Provider\Event; |
30 | 29 | use OCA\DAV\CalDAV\BirthdayService; |
31 | 30 | use OCA\DAV\Capabilities; |
@@ -191,6 +191,9 @@ discard block |
||
191 | 191 | return false; |
192 | 192 | } |
193 | 193 | |
194 | + /** |
|
195 | + * @param string $path |
|
196 | + */ |
|
194 | 197 | private function batchDelete ($path = null) { |
195 | 198 | $params = array( |
196 | 199 | 'Bucket' => $this->bucket |
@@ -516,6 +519,9 @@ discard block |
||
516 | 519 | return $this->id; |
517 | 520 | } |
518 | 521 | |
522 | + /** |
|
523 | + * @param string $path |
|
524 | + */ |
|
519 | 525 | public function writeBack($tmpFile, $path) { |
520 | 526 | try { |
521 | 527 | $this->getConnection()->putObject(array( |
@@ -76,6 +76,9 @@ discard block |
||
76 | 76 | return false; |
77 | 77 | } |
78 | 78 | |
79 | + /** |
|
80 | + * @param string $path |
|
81 | + */ |
|
79 | 82 | private function setMetaData($path, $metaData) { |
80 | 83 | $this->metaData[ltrim($path, '/')] = $metaData; |
81 | 84 | } |
@@ -316,6 +319,9 @@ discard block |
||
316 | 319 | return false; |
317 | 320 | } |
318 | 321 | |
322 | + /** |
|
323 | + * @param string $path |
|
324 | + */ |
|
319 | 325 | public function writeBack($tmpFile, $path) { |
320 | 326 | $handle = fopen($tmpFile, 'r'); |
321 | 327 | try { |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | * |
217 | 217 | * @param \Google_Service_Drive_DriveFile |
218 | 218 | * |
219 | - * @return true if the file is a Google Doc file, false otherwise |
|
219 | + * @return boolean if the file is a Google Doc file, false otherwise |
|
220 | 220 | */ |
221 | 221 | private function isGoogleDocFile($file) { |
222 | 222 | return $this->getGoogleDocExtension($file->getMimeType()) !== ''; |
@@ -505,6 +505,9 @@ discard block |
||
505 | 505 | } |
506 | 506 | } |
507 | 507 | |
508 | + /** |
|
509 | + * @param string $path |
|
510 | + */ |
|
508 | 511 | public function writeBack($tmpFile, $path) { |
509 | 512 | $parentFolder = $this->getDriveFile(dirname($path)); |
510 | 513 | if ($parentFolder) { |
@@ -370,6 +370,7 @@ |
||
370 | 370 | |
371 | 371 | /** |
372 | 372 | * write back temporary files |
373 | + * @param string $path |
|
373 | 374 | */ |
374 | 375 | function writeBack($tmpFile, $path) { |
375 | 376 | $this->addFile($path, $tmpFile); |