Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel <faust64@gmail.com>2021-02-09 10:17:53 +0300
committerSamuel <faust64@gmail.com>2021-02-09 10:18:16 +0300
commit6e4cd33d12ca1f415ce22f12819cea401ca9be66 (patch)
tree120e926c03460da3050aba452a426ab75b59cf88 /apps/federatedfilesharing/lib
parente7ea31dcaa9b577d7152b79b3f34f94d9873af55 (diff)
fix(php-cs)
Signed-off-by: Samuel <faust64@gmail.com>
Diffstat (limited to 'apps/federatedfilesharing/lib')
-rw-r--r--apps/federatedfilesharing/lib/Notifications.php11
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;