diff options
author | Samuel <faust64@gmail.com> | 2021-02-09 08:17:53 +0100 |
---|---|---|
committer | Samuel <faust64@gmail.com> | 2021-02-09 08:18:16 +0100 |
commit | 6e4cd33d12ca1f415ce22f12819cea401ca9be66 (patch) | |
tree | 120e926c03460da3050aba452a426ab75b59cf88 | |
parent | e7ea31dcaa9b577d7152b79b3f34f94d9873af55 (diff) | |
download | nextcloud-server-6e4cd33d12ca1f415ce22f12819cea401ca9be66.tar.gz nextcloud-server-6e4cd33d12ca1f415ce22f12819cea401ca9be66.zip |
fix(php-cs)
Signed-off-by: Samuel <faust64@gmail.com>
-rw-r--r-- | apps/federatedfilesharing/lib/Notifications.php | 11 |
1 files 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; |