@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | /** |
146 | 146 | * List all installed apps |
147 | 147 | * |
148 | - * @return string[] |
|
148 | + * @return integer[] |
|
149 | 149 | * @throws \Exception |
150 | 150 | */ |
151 | 151 | public function getInstalledApps() { |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | /** |
258 | 258 | * Do not allow more than one active app-theme |
259 | 259 | * |
260 | - * @param $appId |
|
260 | + * @param string $appId |
|
261 | 261 | * @throws AppNotFoundException |
262 | 262 | * @throws \InvalidArgumentException |
263 | 263 | * @throws \Exception |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | } |
543 | 543 | |
544 | 544 | /** |
545 | - * @param $appId |
|
545 | + * @param string $appId |
|
546 | 546 | * @return bool |
547 | 547 | * @throws \Exception |
548 | 548 | */ |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | /** |
579 | 579 | * @param string $package package path |
580 | 580 | * @param bool $skipMigrations whether to skip migrations, which would only install the code |
581 | - * @return string|false app id or false in case of error |
|
581 | + * @return integer app id or false in case of error |
|
582 | 582 | * @since 10.0 |
583 | 583 | * @throws \Exception |
584 | 584 | */ |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | |
593 | 593 | /** |
594 | 594 | * @param string $package |
595 | - * @return mixed |
|
595 | + * @return boolean |
|
596 | 596 | * @since 10.0 |
597 | 597 | * @throws \Exception |
598 | 598 | */ |
@@ -189,10 +189,10 @@ |
||
189 | 189 | * inform recipient about public link share |
190 | 190 | * |
191 | 191 | * @param string $recipient recipient email address |
192 | - * @param string $filename the shared file |
|
193 | - * @param string $link the public link |
|
194 | 192 | * @param array $options allows ['cc'] and ['bcc'] recipients |
195 | - * @param int $expiration expiration date (timestamp) |
|
193 | + * @param string $subject |
|
194 | + * @param boolean|string $htmlBody |
|
195 | + * @param boolean|string $textBody |
|
196 | 196 | * @return string[] $result of failed recipients |
197 | 197 | */ |
198 | 198 | public function sendLinkShareMailFromBody($recipient, $subject, $htmlBody, $textBody, $options = []) { |