summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorSamuel <faust64@gmail.com>2021-02-09 08:35:16 +0100
committerSamuel <faust64@gmail.com>2021-02-09 08:35:16 +0100
commit9b600a5365c057d42c765d0c4b8a59b5bdaa4bd4 (patch)
treedb9b0bd9748849b089db940740cc951f899c9da1 /apps
parent6e4cd33d12ca1f415ce22f12819cea401ca9be66 (diff)
downloadnextcloud-server-9b600a5365c057d42c765d0c4b8a59b5bdaa4bd4.tar.gz
nextcloud-server-9b600a5365c057d42c765d0c4b8a59b5bdaa4bd4.zip
fix(misc)
Signed-off-by: Samuel <faust64@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/federatedfilesharing/lib/Notifications.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/apps/federatedfilesharing/lib/Notifications.php b/apps/federatedfilesharing/lib/Notifications.php
index 58938d1a182..009752cfd6d 100644
--- a/apps/federatedfilesharing/lib/Notifications.php
+++ b/apps/federatedfilesharing/lib/Notifications.php
@@ -68,28 +68,30 @@ class Notifications {
private $eventDispatcher;
/** @var ILogger */
- protected $logger;
+ private $logger;
/**
- * FederatedFileSharing constructor
+ * Notifications constructor
*
* @param AddressHandler $addressHandler
* @param IClientService $httpClientService
- * @param IDiscoveryServicee $discoveryService
+ * @param IDiscoveryService $discoveryService
* @param ILogger $logger
* @param IJobList $jobList
* @param ICloudFederationProviderManager $federationProviderManager
* @param ICloudFederationFactory $cloudFederationFactory
* @param IEventDispatcher $eventDispatcher
*/
- public function __construct(AddressHandler $addressHandler,
+ public function __construct(
+ AddressHandler $addressHandler,
IClientService $httpClientService,
IDiscoveryService $discoveryService,
ILogger $logger,
IJobList $jobList,
ICloudFederationProviderManager $federationProviderManager,
ICloudFederationFactory $cloudFederationFactory,
- IEventDispatcher $eventDispatcher) {
+ IEventDispatcher $eventDispatcher
+ ) {
$this->addressHandler = $addressHandler;
$this->httpClientService = $httpClientService;
$this->discoveryService = $discoveryService;