@@ -64,8 +64,8 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | - * @param $source |
|
| 68 | - * @param $path |
|
| 67 | + * @param resource $source |
|
| 68 | + * @param string $path |
|
| 69 | 69 | * @return resource |
| 70 | 70 | */ |
| 71 | 71 | public static function wrap($source, $path) { |
@@ -126,6 +126,9 @@ discard block |
||
| 126 | 126 | return parent::stream_write($data); |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | + /** |
|
| 130 | + * @param string $data |
|
| 131 | + */ |
|
| 129 | 132 | private function updateHashingContexts($data) { |
| 130 | 133 | foreach ($this->hashingContexts as $ctx) { |
| 131 | 134 | \hash_update($ctx, $data); |
@@ -199,7 +202,7 @@ discard block |
||
| 199 | 202 | } |
| 200 | 203 | |
| 201 | 204 | /** |
| 202 | - * @return mixed |
|
| 205 | + * @return string |
|
| 203 | 206 | * @return string |
| 204 | 207 | */ |
| 205 | 208 | private function getPathFromStreamContext() { |
@@ -145,6 +145,9 @@ |
||
| 145 | 145 | return true; |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | + /** |
|
| 149 | + * @param string $path |
|
| 150 | + */ |
|
| 148 | 151 | public function url_stat($path) { |
| 149 | 152 | if (isset(self::$data[$path])) { |
| 150 | 153 | $size = \strlen(self::$data[$path]); |
@@ -742,11 +742,19 @@ discard block |
||
| 742 | 742 | } |
| 743 | 743 | |
| 744 | 744 | // case-insensitive array_search |
| 745 | + |
|
| 746 | + /** |
|
| 747 | + * @param string $needle |
|
| 748 | + */ |
|
| 745 | 749 | protected function array_searchi($needle, $haystack, $mem='getName') { |
| 746 | 750 | if(!\is_array($haystack)) { |
| 747 | 751 | return false; |
| 748 | 752 | } |
| 749 | 753 | return \array_search(\strtolower($needle), \array_map( |
| 754 | + |
|
| 755 | + /** |
|
| 756 | + * @param string $tag |
|
| 757 | + */ |
|
| 750 | 758 | function($tag) use($mem) { |
| 751 | 759 | return \strtolower(\call_user_func([$tag, $mem])); |
| 752 | 760 | }, $haystack) |
@@ -771,7 +779,7 @@ discard block |
||
| 771 | 779 | * Get a tag by its name. |
| 772 | 780 | * |
| 773 | 781 | * @param string $name The tag name. |
| 774 | - * @return integer|bool The tag object's offset within the $this->tags |
|
| 782 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
| 775 | 783 | * array or false if it doesn't exist. |
| 776 | 784 | */ |
| 777 | 785 | private function getTagByName($name) { |
@@ -782,7 +790,7 @@ discard block |
||
| 782 | 790 | * Get a tag by its ID. |
| 783 | 791 | * |
| 784 | 792 | * @param string $id The tag ID to look for. |
| 785 | - * @return integer|bool The tag object's offset within the $this->tags |
|
| 793 | + * @return \OCP\AppFramework\Db\Entity The tag object's offset within the $this->tags |
|
| 786 | 794 | * array or false if it doesn't exist. |
| 787 | 795 | */ |
| 788 | 796 | private function getTagById($id) { |
@@ -170,7 +170,7 @@ |
||
| 170 | 170 | /** |
| 171 | 171 | * Returns whether the given mount point should be scanned |
| 172 | 172 | * |
| 173 | - * @param $mount mount point |
|
| 173 | + * @param \OC\Files\Mount\MountPoint|null $mount mount point |
|
| 174 | 174 | * @return bool true to scan, false to skip |
| 175 | 175 | */ |
| 176 | 176 | private function shouldScan($mount) { |