From 6e4cd33d12ca1f415ce22f12819cea401ca9be66 Mon Sep 17 00:00:00 2001 From: Samuel Date: Tue, 9 Feb 2021 08:17:53 +0100 Subject: [PATCH] fix(php-cs) Signed-off-by: Samuel --- apps/federatedfilesharing/lib/Notifications.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/federatedfilesharing/lib/Notifications.php b/apps/federatedfilesharing/lib/Notifications.php index cb72dd343cf..58938d1a182 100644 --- a/apps/federatedfilesharing/lib/Notifications.php +++ b/apps/federatedfilesharing/lib/Notifications.php @@ -38,6 +38,11 @@ use OCP\Http\Client\IClientService; use OCP\OCS\IDiscoveryService; use OCP\ILogger; +/** + * Class Notifications + * + * @package OCA\FederatedFileSharing + */ class Notifications { public const RESPONSE_FORMAT = 'json'; // default response format for ocs calls @@ -77,16 +82,14 @@ class Notifications { * @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;