@@ -672,7 +672,7 @@ discard block |
||
672 | 672 | * Set the flag to true, so that the file would be |
673 | 673 | * in the decrypted state. |
674 | 674 | * |
675 | - * @param $isDisabled bool |
|
675 | + * @param boolean $isDisabled bool |
|
676 | 676 | */ |
677 | 677 | public static function setDisableWriteEncryption($isDisabled) { |
678 | 678 | self::$disableWriteEncryption = $isDisabled; |
@@ -929,7 +929,7 @@ discard block |
||
929 | 929 | /** |
930 | 930 | * return header size of given file |
931 | 931 | * |
932 | - * @param string|resource $path |
|
932 | + * @param string $path |
|
933 | 933 | * @return int |
934 | 934 | */ |
935 | 935 | protected function getHeaderSize($path) { |
@@ -980,7 +980,7 @@ discard block |
||
980 | 980 | /** |
981 | 981 | * read header from file |
982 | 982 | * |
983 | - * @param string|resource $path |
|
983 | + * @param string $path |
|
984 | 984 | * @return array |
985 | 985 | */ |
986 | 986 | protected function getHeader($path) { |
@@ -1076,7 +1076,7 @@ discard block |
||
1076 | 1076 | /** |
1077 | 1077 | * check if path points to a files version |
1078 | 1078 | * |
1079 | - * @param $path |
|
1079 | + * @param string $path |
|
1080 | 1080 | * @return bool |
1081 | 1081 | */ |
1082 | 1082 | protected function isVersion($path) { |
@@ -449,7 +449,7 @@ |
||
449 | 449 | * In some environments the system config file is readonly. Find out if this |
450 | 450 | * is the case. |
451 | 451 | * |
452 | - * @return boolean |
|
452 | + * @return false|string |
|
453 | 453 | * @since 10.0.3 |
454 | 454 | */ |
455 | 455 | public function isSystemConfigReadOnly() { |
@@ -22,7 +22,6 @@ |
||
22 | 22 | namespace OC\DB; |
23 | 23 | |
24 | 24 | use Doctrine\DBAL\DBALException; |
25 | -use Doctrine\DBAL\Driver\ServerInfoAwareConnection; |
|
26 | 25 | use Doctrine\DBAL\Event\SchemaColumnDefinitionEventArgs; |
27 | 26 | use Doctrine\DBAL\Platforms\MySqlPlatform; |
28 | 27 | use Doctrine\DBAL\Schema\Column; |
@@ -699,7 +699,7 @@ |
||
699 | 699 | } |
700 | 700 | |
701 | 701 | /** |
702 | - * @param $internalPath |
|
702 | + * @param string $internalPath |
|
703 | 703 | * @return array |
704 | 704 | */ |
705 | 705 | private function convertInternalPathToGlobalPath($internalPath) { |
@@ -32,7 +32,6 @@ |
||
32 | 32 | |
33 | 33 | use OC\AppFramework\Http\Request; |
34 | 34 | use OCA\DAV\Files\IProvidesAdditionalHeaders; |
35 | -use OCA\DAV\Meta\MetaFile; |
|
36 | 35 | use OCP\Files\ForbiddenException; |
37 | 36 | use Sabre\DAV\Exception\Forbidden; |
38 | 37 | use Sabre\DAV\Exception\NotFound; |
@@ -310,6 +310,9 @@ |
||
310 | 310 | } |
311 | 311 | |
312 | 312 | |
313 | + /** |
|
314 | + * @param string $revision |
|
315 | + */ |
|
313 | 316 | public static function restoreVersion($uid, $filename, $fileToRestore, $revision) { |
314 | 317 | if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED) !== true) { |
315 | 318 | return false; |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | * @param string $pattern |
182 | 182 | * @param integer $limit |
183 | 183 | * @param integer $offset |
184 | - * @return Entity[] |
|
184 | + * @return Account[] |
|
185 | 185 | */ |
186 | 186 | public function find($gid, $pattern, $limit = null, $offset = null) { |
187 | 187 | return $this->searchAccountsSqlQuery($gid, false, $pattern, $limit, $offset); |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @param string $pattern |
199 | 199 | * @param integer $limit |
200 | 200 | * @param integer $offset |
201 | - * @return Entity[] |
|
201 | + * @return Account[] |
|
202 | 202 | */ |
203 | 203 | public function findById($backendGroupId, $pattern, $limit = null, $offset = null) { |
204 | 204 | return $this->searchAccountsSqlQuery($backendGroupId, true, $pattern, $limit, $offset); |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | * are users in the group (identified by backend group id |
492 | 492 | * if $isBackendGroupId is true, or gid if $isBackendGroupId is false) |
493 | 493 | * |
494 | - * @param string|int $groupId |
|
494 | + * @param string $groupId |
|
495 | 495 | * @param bool $isBackendGroupId |
496 | 496 | * @param string $pattern |
497 | 497 | * @return int |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | |
570 | 570 | /** |
571 | 571 | * @param IQueryBuilder $qb |
572 | - * @return int |
|
572 | + * @return boolean |
|
573 | 573 | */ |
574 | 574 | private function getAffectedQuery(IQueryBuilder $qb) { |
575 | 575 | // If affected is equal or more then 1, it means operation was successful |