@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * Magic method to first get the real rootFolder and then |
| 35 | 35 | * call $method with $args on it |
| 36 | 36 | * |
| 37 | - * @param $method |
|
| 37 | + * @param string $method |
|
| 38 | 38 | * @param $args |
| 39 | 39 | * @return mixed |
| 40 | 40 | */ |
@@ -2,9 +2,7 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace OC\Files\Node; |
| 4 | 4 | |
| 5 | -use OC\Files\Mount\MountPoint; |
|
| 6 | 5 | use OCP\Files\IRootFolder; |
| 7 | -use OCP\Files\NotPermittedException; |
|
| 8 | 6 | |
| 9 | 7 | /** |
| 10 | 8 | * Class LazyRoot |
@@ -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]); |
@@ -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]); |
@@ -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]); |
@@ -27,7 +27,6 @@ |
||
| 27 | 27 | use OCP\IUser; |
| 28 | 28 | use OCP\ILogger; |
| 29 | 29 | use OCP\Files\Folder; |
| 30 | - |
|
| 31 | 30 | use OC\Share20\Exception\ShareNotFound; |
| 32 | 31 | |
| 33 | 32 | /** |
@@ -256,6 +256,11 @@ |
||
| 256 | 256 | */ |
| 257 | 257 | // FIXME This method is only public, until OC_L10N does not need it anymore, |
| 258 | 258 | // FIXME This is also the reason, why it is not in the public interface |
| 259 | + |
|
| 260 | + /** |
|
| 261 | + * @param string|boolean $app |
|
| 262 | + * @param string|null $lang |
|
| 263 | + */ |
|
| 259 | 264 | public function getL10nFilesForApp($app, $lang) { |
| 260 | 265 | $languageFiles = []; |
| 261 | 266 | |
@@ -136,7 +136,7 @@ |
||
| 136 | 136 | * Returns the list of members for a group-principal |
| 137 | 137 | * |
| 138 | 138 | * @param string $principal |
| 139 | - * @return array |
|
| 139 | + * @return string[] |
|
| 140 | 140 | */ |
| 141 | 141 | function getGroupMemberSet($principal) { |
| 142 | 142 | // TODO: for now the group principal has only one member, the user itself |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | * Looks up a system wide defined value |
| 112 | 112 | * |
| 113 | 113 | * @param string $key the key of the value, under which it was saved |
| 114 | - * @param mixed $default the default value to be returned if the value isn't set |
|
| 114 | + * @param string $default the default value to be returned if the value isn't set |
|
| 115 | 115 | * @return mixed the value or $default |
| 116 | 116 | */ |
| 117 | 117 | public function getSystemValue($key, $default = '') { |