summaryrefslogtreecommitdiffstats
path: root/apps/federation/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-08-01 09:25:09 +0200
committerGitHub <noreply@github.com>2017-08-01 09:25:09 +0200
commit2b895e0c60b6f283cb26b2ca0e18a05497103bc2 (patch)
tree85e00c12d8a0e507d46c11ec4cba67fc31aae67e /apps/federation/lib
parent456392e627de3aad19c8188974a4972cf4e274db (diff)
parent2fae696d35d221a9fb25b90b90b32c35c81fdd45 (diff)
downloadnextcloud-server-2b895e0c60b6f283cb26b2ca0e18a05497103bc2.tar.gz
nextcloud-server-2b895e0c60b6f283cb26b2ca0e18a05497103bc2.zip
Merge pull request #5847 from nextcloud/make-phan-config-more-strict-2
Phan fixes
Diffstat (limited to 'apps/federation/lib')
-rw-r--r--apps/federation/lib/BackgroundJob/GetSharedSecret.php2
-rw-r--r--apps/federation/lib/BackgroundJob/RequestSharedSecret.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/federation/lib/BackgroundJob/GetSharedSecret.php b/apps/federation/lib/BackgroundJob/GetSharedSecret.php
index b1367be9524..8a8d475da61 100644
--- a/apps/federation/lib/BackgroundJob/GetSharedSecret.php
+++ b/apps/federation/lib/BackgroundJob/GetSharedSecret.php
@@ -121,7 +121,7 @@ class GetSharedSecret extends Job{
* run the job, then remove it from the joblist
*
* @param JobList $jobList
- * @param ILogger $logger
+ * @param ILogger|null $logger
*/
public function execute($jobList, ILogger $logger = null) {
$target = $this->argument['url'];
diff --git a/apps/federation/lib/BackgroundJob/RequestSharedSecret.php b/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
index 9123e37300d..77d0234ef74 100644
--- a/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
+++ b/apps/federation/lib/BackgroundJob/RequestSharedSecret.php
@@ -120,7 +120,7 @@ class RequestSharedSecret extends Job {
* run the job, then remove it from the joblist
*
* @param JobList $jobList
- * @param ILogger $logger
+ * @param ILogger|null $logger
*/
public function execute($jobList, ILogger $logger = null) {
$target = $this->argument['url'];