mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
fix(php-cs)
Signed-off-by: Samuel <faust64@gmail.com>
This commit is contained in:
parent
e7ea31dcaa
commit
6e4cd33d12
1 changed files with 7 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue