@@ -80,7 +80,7 @@ |
||
| 80 | 80 | * the next element. |
| 81 | 81 | * |
| 82 | 82 | * @param Reader $reader |
| 83 | - * @return mixed |
|
| 83 | + * @return null|TagList |
|
| 84 | 84 | */ |
| 85 | 85 | static function xmlDeserialize(Reader $reader) { |
| 86 | 86 | $tags = []; |
@@ -30,7 +30,6 @@ |
||
| 30 | 30 | |
| 31 | 31 | namespace OC\Share; |
| 32 | 32 | |
| 33 | -use DateTime; |
|
| 34 | 33 | use OCP\IL10N; |
| 35 | 34 | use OCP\IURLGenerator; |
| 36 | 35 | use OCP\IUser; |
@@ -91,7 +91,7 @@ |
||
| 91 | 91 | * @param bool $isLoggedIn |
| 92 | 92 | * @param bool $isAdminUser |
| 93 | 93 | * @param ContentSecurityPolicyManager $contentSecurityPolicyManager |
| 94 | - * @param CSRFTokenManager $csrfTokenManager |
|
| 94 | + * @param CsrfTokenManager $csrfTokenManager |
|
| 95 | 95 | */ |
| 96 | 96 | public function __construct(IRequest $request, |
| 97 | 97 | ControllerMethodReflector $reflector, |
@@ -1036,7 +1036,7 @@ discard block |
||
| 1036 | 1036 | * @param string $app |
| 1037 | 1037 | * @param \OCP\IConfig $config |
| 1038 | 1038 | * @param \OCP\IL10N $l |
| 1039 | - * @return bool |
|
| 1039 | + * @return string |
|
| 1040 | 1040 | * |
| 1041 | 1041 | * @throws Exception if app is not compatible with this version of ownCloud |
| 1042 | 1042 | * @throws Exception if no app-name was specified |
@@ -1216,6 +1216,9 @@ discard block |
||
| 1216 | 1216 | } |
| 1217 | 1217 | } |
| 1218 | 1218 | |
| 1219 | + /** |
|
| 1220 | + * @param string $lang |
|
| 1221 | + */ |
|
| 1219 | 1222 | protected static function findBestL10NOption($options, $lang) { |
| 1220 | 1223 | $fallback = $similarLangFallback = $englishFallback = false; |
| 1221 | 1224 | |
@@ -1310,8 +1313,8 @@ discard block |
||
| 1310 | 1313 | } |
| 1311 | 1314 | |
| 1312 | 1315 | /** |
| 1313 | - * @param $config |
|
| 1314 | - * @param $l |
|
| 1316 | + * @param OCP\IConfig $config |
|
| 1317 | + * @param OCP\IL10N $l |
|
| 1315 | 1318 | * @param $info |
| 1316 | 1319 | * @throws Exception |
| 1317 | 1320 | */ |
@@ -51,7 +51,6 @@ |
||
| 51 | 51 | use OC\App\InfoParser; |
| 52 | 52 | use OC\App\Platform; |
| 53 | 53 | use OC\Installer; |
| 54 | -use OC\OCSClient; |
|
| 55 | 54 | use OC\Repair; |
| 56 | 55 | use OCP\App\ManagerEvent; |
| 57 | 56 | |
@@ -318,6 +318,11 @@ |
||
| 318 | 318 | */ |
| 319 | 319 | // FIXME This method is only public, until OC_L10N does not need it anymore, |
| 320 | 320 | // FIXME This is also the reason, why it is not in the public interface |
| 321 | + |
|
| 322 | + /** |
|
| 323 | + * @param string $app |
|
| 324 | + * @param string $lang |
|
| 325 | + */ |
|
| 321 | 326 | public function getL10nFilesForApp($app, $lang) { |
| 322 | 327 | $languageFiles = []; |
| 323 | 328 | |
@@ -45,7 +45,6 @@ |
||
| 45 | 45 | use OC\App\CodeChecker\CodeChecker; |
| 46 | 46 | use OC\App\CodeChecker\EmptyCheck; |
| 47 | 47 | use OC\App\CodeChecker\PrivateCheck; |
| 48 | -use OC\Archive\Archive; |
|
| 49 | 48 | use OC\Archive\TAR; |
| 50 | 49 | use OC_App; |
| 51 | 50 | use OC_DB; |
@@ -131,7 +131,7 @@ |
||
| 131 | 131 | /** |
| 132 | 132 | * Create the federated share provider |
| 133 | 133 | * |
| 134 | - * @return FederatedShareProvider |
|
| 134 | + * @return null|ShareByMailProvider |
|
| 135 | 135 | */ |
| 136 | 136 | protected function getShareByMailProvider() { |
| 137 | 137 | if ($this->shareByMailProvider === null) { |
@@ -184,10 +184,10 @@ discard block |
||
| 184 | 184 | * publish activity if a file/folder was shared by mail |
| 185 | 185 | * |
| 186 | 186 | * @param $subject |
| 187 | - * @param $parameters |
|
| 188 | - * @param $affectedUser |
|
| 187 | + * @param string[] $parameters |
|
| 188 | + * @param string $affectedUser |
|
| 189 | 189 | * @param $fileId |
| 190 | - * @param $filePath |
|
| 190 | + * @param string $filePath |
|
| 191 | 191 | */ |
| 192 | 192 | protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) { |
| 193 | 193 | $event = $this->activityManager->generateEvent(); |
@@ -239,6 +239,12 @@ discard block |
||
| 239 | 239 | |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | + /** |
|
| 243 | + * @param string $link |
|
| 244 | + * @param string $owner |
|
| 245 | + * @param string $initiator |
|
| 246 | + * @param string $shareWith |
|
| 247 | + */ |
|
| 242 | 248 | protected function sendMailNotification($filename, $link, $owner, $initiator, $shareWith) { |
| 243 | 249 | if ($owner === $initiator) { |
| 244 | 250 | $subject = (string)$this->l->t('%s shared »%s« with you', array($owner, $filename)); |
@@ -264,6 +270,7 @@ discard block |
||
| 264 | 270 | * @param $link |
| 265 | 271 | * @param $owner |
| 266 | 272 | * @param $initiator |
| 273 | + * @param string $template |
|
| 267 | 274 | * @return string plain text mail |
| 268 | 275 | * @throws HintException |
| 269 | 276 | */ |
@@ -703,7 +710,7 @@ discard block |
||
| 703 | 710 | /** |
| 704 | 711 | * get database row of a give share |
| 705 | 712 | * |
| 706 | - * @param $id |
|
| 713 | + * @param integer $id |
|
| 707 | 714 | * @return array |
| 708 | 715 | * @throws ShareNotFound |
| 709 | 716 | */ |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | /** |
| 95 | 95 | * Performs a DELETE or UPDATE query to the database. |
| 96 | 96 | * @param \Doctrine\DBAL\Driver\Statement $query |
| 97 | - * @param array $parameters |
|
| 97 | + * @param string[] $parameters |
|
| 98 | 98 | * @return bool true if at least one row was modified, false otherwise |
| 99 | 99 | */ |
| 100 | 100 | protected function modify($query, $parameters) { |