@@ -99,6 +99,7 @@ discard block |
||
| 99 | 99 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 100 | 100 | * @param \OCP\Lock\ILockingProvider $provider |
| 101 | 101 | * @throws \OCP\Lock\LockedException |
| 102 | + * @return void |
|
| 102 | 103 | */ |
| 103 | 104 | public function acquireLock($path, $type, ILockingProvider $provider); |
| 104 | 105 | |
@@ -106,6 +107,7 @@ discard block |
||
| 106 | 107 | * @param string $path The path of the file to release the lock for |
| 107 | 108 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 108 | 109 | * @param \OCP\Lock\ILockingProvider $provider |
| 110 | + * @return void |
|
| 109 | 111 | */ |
| 110 | 112 | public function releaseLock($path, $type, ILockingProvider $provider); |
| 111 | 113 | |
@@ -114,6 +116,7 @@ discard block |
||
| 114 | 116 | * @param int $type \OCP\Lock\ILockingProvider::LOCK_SHARED or \OCP\Lock\ILockingProvider::LOCK_EXCLUSIVE |
| 115 | 117 | * @param \OCP\Lock\ILockingProvider $provider |
| 116 | 118 | * @throws \OCP\Lock\LockedException |
| 119 | + * @return void |
|
| 117 | 120 | */ |
| 118 | 121 | public function changeLock($path, $type, ILockingProvider $provider); |
| 119 | 122 | } |
@@ -982,7 +982,7 @@ |
||
| 982 | 982 | /** |
| 983 | 983 | * check if path points to a files version |
| 984 | 984 | * |
| 985 | - * @param $path |
|
| 985 | + * @param string $path |
|
| 986 | 986 | * @return bool |
| 987 | 987 | */ |
| 988 | 988 | protected function isVersion($path) { |
@@ -159,7 +159,7 @@ |
||
| 159 | 159 | * Checks whether the given path is a part file |
| 160 | 160 | * |
| 161 | 161 | * @param string $path Path that may identify a .part file |
| 162 | - * @return string File path without .part extension |
|
| 162 | + * @return boolean File path without .part extension |
|
| 163 | 163 | * @note this is needed for reusing keys |
| 164 | 164 | */ |
| 165 | 165 | private function isPartFile($path) { |
@@ -144,6 +144,9 @@ |
||
| 144 | 144 | return true; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | + /** |
|
| 148 | + * @param string $path |
|
| 149 | + */ |
|
| 147 | 150 | public function url_stat($path) { |
| 148 | 151 | if (isset(self::$data[$path])) { |
| 149 | 152 | $size = strlen(self::$data[$path]); |
@@ -23,7 +23,6 @@ |
||
| 23 | 23 | |
| 24 | 24 | use OCP\Files\IMimeTypeLoader; |
| 25 | 25 | use OCP\IDBConnection; |
| 26 | - |
|
| 27 | 26 | use Doctrine\DBAL\Exception\UniqueConstraintViolationException; |
| 28 | 27 | |
| 29 | 28 | /** |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | * and does not take the chroot into account ) |
| 201 | 201 | * |
| 202 | 202 | * @param string $path |
| 203 | - * @return \OCP\Files\Mount\IMountPoint |
|
| 203 | + * @return Mount\MountPoint|null |
|
| 204 | 204 | */ |
| 205 | 205 | public function getMount($path) { |
| 206 | 206 | return Filesystem::getMountManager()->find($this->getAbsolutePath($path)); |
@@ -948,7 +948,7 @@ discard block |
||
| 948 | 948 | |
| 949 | 949 | /** |
| 950 | 950 | * @param string $path |
| 951 | - * @return bool|string |
|
| 951 | + * @return string|false |
|
| 952 | 952 | * @throws \OCP\Files\InvalidPathException |
| 953 | 953 | */ |
| 954 | 954 | public function toTmpFile($path) { |
@@ -2071,7 +2071,7 @@ discard block |
||
| 2071 | 2071 | |
| 2072 | 2072 | /** |
| 2073 | 2073 | * @param string $filename |
| 2074 | - * @return array |
|
| 2074 | + * @return string[] |
|
| 2075 | 2075 | * @throws \OC\User\NoUserException |
| 2076 | 2076 | * @throws NotFoundException |
| 2077 | 2077 | */ |
@@ -154,7 +154,7 @@ |
||
| 154 | 154 | |
| 155 | 155 | /** |
| 156 | 156 | * @param string $gid |
| 157 | - * @return \OCP\IGroup |
|
| 157 | + * @return null|Group |
|
| 158 | 158 | */ |
| 159 | 159 | protected function getGroupObject($gid) { |
| 160 | 160 | $backends = array(); |
@@ -482,7 +482,7 @@ |
||
| 482 | 482 | |
| 483 | 483 | /** |
| 484 | 484 | * Removes an app |
| 485 | - * @param string $name name of the application to remove |
|
| 485 | + * @param string $appId |
|
| 486 | 486 | * @return boolean |
| 487 | 487 | * |
| 488 | 488 | * |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | * Wrapper around file_get_contents($filename, $data) |
| 33 | 33 | * |
| 34 | 34 | * @param string $filename |
| 35 | - * @return string|false |
|
| 35 | + * @return string |
|
| 36 | 36 | */ |
| 37 | 37 | public function file_get_contents($filename) { |
| 38 | 38 | return file_get_contents($filename); |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | * Wrapper around file_put_contents($filename, $data) |
| 53 | 53 | * |
| 54 | 54 | * @param string $filename |
| 55 | - * @param $data |
|
| 56 | - * @return int|false |
|
| 55 | + * @param string $data |
|
| 56 | + * @return integer |
|
| 57 | 57 | */ |
| 58 | 58 | public function file_put_contents($filename, $data) { |
| 59 | 59 | return file_put_contents($filename, $data); |