@@ -161,7 +161,7 @@ |
||
161 | 161 | /** |
162 | 162 | * Set the BCC recipients of this message. |
163 | 163 | * |
164 | - * @param array $recipients Example: array('[email protected]', '[email protected]' => 'A name') |
|
164 | + * @param string[] $recipients Example: array('[email protected]', '[email protected]' => 'A name') |
|
165 | 165 | * @return $this |
166 | 166 | */ |
167 | 167 | public function setBcc(array $recipients) { |
@@ -67,7 +67,7 @@ |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | - * @param \Doctrine\DBAL\Connection $connection |
|
70 | + * @param \OC\DB\Connection $connection |
|
71 | 71 | * @return string[] |
72 | 72 | */ |
73 | 73 | protected function getAllNonUTF8BinTables($connection) { |
@@ -53,7 +53,7 @@ |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
56 | - * @param \Doctrine\DBAL\Connection $connection |
|
56 | + * @param \OCP\IDBConnection $connection |
|
57 | 57 | * @return string[] |
58 | 58 | */ |
59 | 59 | private function getAllMyIsamTables($connection) { |
@@ -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 { |
@@ -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]); |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | |
68 | 68 | /** |
69 | 69 | * @param array $entry |
70 | - * @return array |
|
70 | + * @return string |
|
71 | 71 | */ |
72 | 72 | protected function formatCacheEntry($entry) { |
73 | 73 | if (isset($entry['path'])) { |
@@ -185,6 +185,9 @@ discard block |
||
185 | 185 | return $this->cache->getStatus($this->getSourcePath($file)); |
186 | 186 | } |
187 | 187 | |
188 | + /** |
|
189 | + * @param \OCP\Files\Cache\ICacheEntry[] $results |
|
190 | + */ |
|
188 | 191 | private function formatSearchResults($results) { |
189 | 192 | $results = array_filter($results, array($this, 'filterCacheEntry')); |
190 | 193 | $results = array_values($results); |
@@ -263,7 +266,7 @@ discard block |
||
263 | 266 | * use the one with the highest id gives the best result with the background scanner, since that is most |
264 | 267 | * likely the folder where we stopped scanning previously |
265 | 268 | * |
266 | - * @return string|bool the path of the folder or false when no folder matched |
|
269 | + * @return boolean the path of the folder or false when no folder matched |
|
267 | 270 | */ |
268 | 271 | public function getIncomplete() { |
269 | 272 | // not supported |
@@ -206,7 +206,7 @@ |
||
206 | 206 | } |
207 | 207 | |
208 | 208 | /** |
209 | - * @param $fileId |
|
209 | + * @param integer $fileId |
|
210 | 210 | * @return array |
211 | 211 | * @throws \OCP\Files\NotFoundException |
212 | 212 | */ |
@@ -21,14 +21,11 @@ |
||
21 | 21 | |
22 | 22 | namespace OC\Files\Config; |
23 | 23 | |
24 | -use Doctrine\DBAL\Exception\UniqueConstraintViolationException; |
|
25 | -use OC\Files\Filesystem; |
|
26 | 24 | use OCP\DB\QueryBuilder\IQueryBuilder; |
27 | 25 | use OCP\Files\Config\ICachedMountInfo; |
28 | 26 | use OCP\Files\Config\IUserMountCache; |
29 | 27 | use OCP\Files\Mount\IMountPoint; |
30 | 28 | use OCP\Files\NotFoundException; |
31 | -use OCP\ICache; |
|
32 | 29 | use OCP\IDBConnection; |
33 | 30 | use OCP\ILogger; |
34 | 31 | use OCP\IUser; |