@@ -202,7 +202,7 @@ |
||
| 202 | 202 | /** |
| 203 | 203 | * removes an entry from the comments run time cache |
| 204 | 204 | * |
| 205 | - * @param mixed $id the comment's id |
|
| 205 | + * @param string $id the comment's id |
|
| 206 | 206 | */ |
| 207 | 207 | protected function uncache($id) { |
| 208 | 208 | $id = strval($id); |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | * Set a value in the cache if it's not already stored |
| 121 | 121 | * |
| 122 | 122 | * @param string $key |
| 123 | - * @param mixed $value |
|
| 123 | + * @param integer $value |
|
| 124 | 124 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 125 | 125 | * @return bool |
| 126 | 126 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | * Set a value in the cache if it's not already stored |
| 121 | 121 | * |
| 122 | 122 | * @param string $key |
| 123 | - * @param mixed $value |
|
| 123 | + * @param integer $value |
|
| 124 | 124 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 125 | 125 | * @return bool |
| 126 | 126 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | * Set a value in the cache if it's not already stored |
| 121 | 121 | * |
| 122 | 122 | * @param string $key |
| 123 | - * @param mixed $value |
|
| 123 | + * @param integer $value |
|
| 124 | 124 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 125 | 125 | * @return bool |
| 126 | 126 | */ |
@@ -120,7 +120,7 @@ |
||
| 120 | 120 | * Set a value in the cache if it's not already stored |
| 121 | 121 | * |
| 122 | 122 | * @param string $key |
| 123 | - * @param mixed $value |
|
| 123 | + * @param integer $value |
|
| 124 | 124 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
| 125 | 125 | * @return bool |
| 126 | 126 | */ |
@@ -90,9 +90,9 @@ |
||
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * @param string $key |
| 93 | - * @param mixed $value |
|
| 93 | + * @param string|null $value |
|
| 94 | 94 | * @param int $ttl |
| 95 | - * @return bool|mixed |
|
| 95 | + * @return boolean |
|
| 96 | 96 | * @throws \OC\ForbiddenException |
| 97 | 97 | */ |
| 98 | 98 | public function set($key, $value, $ttl = 0) { |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | 112 | * Gets the correct header |
| 113 | - * @param Http::CONSTANT $status the constant from the Http class |
|
| 113 | + * @param integer $status the constant from the Http class |
|
| 114 | 114 | * @param \DateTime $lastModified formatted last modified date |
| 115 | 115 | * @param string $ETag the etag |
| 116 | 116 | * @return string |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | - * @param object $object an object or classname |
|
| 49 | + * @param \OCP\AppFramework\Controller $object an object or classname |
|
| 50 | 50 | * @param string $method the method which we want to inspect |
| 51 | 51 | */ |
| 52 | 52 | public function reflect($object, $method){ |
@@ -30,7 +30,6 @@ |
||
| 30 | 30 | use OC\Files\Filesystem; |
| 31 | 31 | use OC\Files\View; |
| 32 | 32 | use OCP\Encryption\IEncryptionModule; |
| 33 | -use OCP\Files\Storage; |
|
| 34 | 33 | use OCP\IConfig; |
| 35 | 34 | |
| 36 | 35 | class Util { |