@@ -155,7 +155,7 @@ |
||
155 | 155 | * Set a value in the cache if it's not already stored |
156 | 156 | * |
157 | 157 | * @param string $key |
158 | - * @param mixed $value |
|
158 | + * @param integer $value |
|
159 | 159 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
160 | 160 | * @return bool |
161 | 161 | * @throws \Exception |
@@ -155,7 +155,7 @@ |
||
155 | 155 | * Set a value in the cache if it's not already stored |
156 | 156 | * |
157 | 157 | * @param string $key |
158 | - * @param mixed $value |
|
158 | + * @param integer $value |
|
159 | 159 | * @param int $ttl Time To Live in seconds. Defaults to 60*60*24 |
160 | 160 | * @return bool |
161 | 161 | * @throws \Exception |
@@ -923,7 +923,7 @@ |
||
923 | 923 | * @param int $previewWidth |
924 | 924 | * @param int $previewHeight |
925 | 925 | * |
926 | - * @return int[] |
|
926 | + * @return double[] |
|
927 | 927 | */ |
928 | 928 | private function scale($image, $askedWidth, $askedHeight, $previewWidth, $previewHeight) { |
929 | 929 | $scalingUp = $this->getScalingUp(); |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * Returns expensive repair steps to be run on the |
124 | 124 | * command line with a special option. |
125 | 125 | * |
126 | - * @return array of RepairStep instances |
|
126 | + * @return OldGroupMembershipShares[] of RepairStep instances |
|
127 | 127 | */ |
128 | 128 | public static function getExpensiveRepairSteps() { |
129 | 129 | return [ |
@@ -163,6 +163,8 @@ discard block |
||
163 | 163 | * {@inheritDoc} |
164 | 164 | * |
165 | 165 | * Re-declared as public to allow invocation from within the closure above in php 5.3 |
166 | + * @param string $scope |
|
167 | + * @param string $method |
|
166 | 168 | */ |
167 | 169 | public function emit($scope, $method, array $arguments = array()) { |
168 | 170 | parent::emit($scope, $method, $arguments); |
@@ -69,7 +69,7 @@ |
||
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
72 | - * @param \Doctrine\DBAL\Connection $connection |
|
72 | + * @param \OC\DB\Connection $connection |
|
73 | 73 | * @return string[] |
74 | 74 | */ |
75 | 75 | 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) { |
@@ -24,7 +24,6 @@ |
||
24 | 24 | use OCP\Security\ICrypto; |
25 | 25 | use OCP\IDBConnection; |
26 | 26 | use OCP\Security\ICredentialsManager; |
27 | -use OCP\IConfig; |
|
28 | 27 | |
29 | 28 | /** |
30 | 29 | * Store and retrieve credentials for external services |
@@ -1074,7 +1074,7 @@ |
||
1074 | 1074 | * Get the certificate manager for the user |
1075 | 1075 | * |
1076 | 1076 | * @param string $userId (optional) if not specified the current loggedin user is used, use null to get the system certificate manager |
1077 | - * @return \OCP\ICertificateManager | null if $uid is null and no user is logged in |
|
1077 | + * @return null|CertificateManager | null if $uid is null and no user is logged in |
|
1078 | 1078 | */ |
1079 | 1079 | public function getCertificateManager($userId = '') { |
1080 | 1080 | if ($userId === '') { |
@@ -74,7 +74,6 @@ |
||
74 | 74 | use OC\Session\CryptoWrapper; |
75 | 75 | use OC\Tagging\TagMapper; |
76 | 76 | use OCA\Theming\Template; |
77 | -use OCP\IL10N; |
|
78 | 77 | use OCP\IServerContainer; |
79 | 78 | use OCP\Security\IContentSecurityPolicyManager; |
80 | 79 | use Symfony\Component\EventDispatcher\EventDispatcher; |
@@ -176,7 +176,7 @@ |
||
176 | 176 | |
177 | 177 | /** |
178 | 178 | * @param mixed $offset |
179 | - * @return mixed |
|
179 | + * @return string|null |
|
180 | 180 | */ |
181 | 181 | public function offsetGet($offset) { |
182 | 182 | return $this->get($offset); |