| @@ 115-141 (lines=27) @@ | ||
| 112 | * @param ConfigService $configService |
|
| 113 | * @param MiscService $miscService |
|
| 114 | */ |
|
| 115 | public function __construct( |
|
| 116 | IRootFolder $rootFolder, |
|
| 117 | IUserManager $userManager, |
|
| 118 | SharesRequest $sharesRequest, |
|
| 119 | TokensRequest $tokensRequest, |
|
| 120 | CirclesRequest $circlesRequest, |
|
| 121 | MembersRequest $membersRequest, |
|
| 122 | GSSharesRequest $gsSharesRequest, |
|
| 123 | CirclesService $circlesService, |
|
| 124 | MembersService $membersService, |
|
| 125 | EventsService $eventsService, |
|
| 126 | ConfigService $configService, |
|
| 127 | MiscService $miscService |
|
| 128 | ) { |
|
| 129 | $this->rootFolder = $rootFolder; |
|
| 130 | $this->userManager = $userManager; |
|
| 131 | $this->sharesRequest = $sharesRequest; |
|
| 132 | $this->tokensRequest = $tokensRequest; |
|
| 133 | $this->circlesRequest = $circlesRequest; |
|
| 134 | $this->membersRequest = $membersRequest; |
|
| 135 | $this->gsSharesRequest = $gsSharesRequest; |
|
| 136 | $this->circlesService = $circlesService; |
|
| 137 | $this->membersService = $membersService; |
|
| 138 | $this->eventsService = $eventsService; |
|
| 139 | $this->configService = $configService; |
|
| 140 | $this->miscService = $miscService; |
|
| 141 | } |
|
| 142 | ||
| 143 | ||
| 144 | /** |
|
| @@ 95-114 (lines=20) @@ | ||
| 92 | * @param IClientService $clientService |
|
| 93 | * @param MiscService $miscService |
|
| 94 | */ |
|
| 95 | public function __construct( |
|
| 96 | $userId, IL10N $l10n, CirclesRequest $circlesRequest, ConfigService $configService, |
|
| 97 | CirclesService $circlesService, BroadcastService $broadcastService, |
|
| 98 | FederatedLinkService $federatedService, |
|
| 99 | FederatedLinksRequest $federatedLinksRequest, EventsService $eventsService, |
|
| 100 | IClientService $clientService, MiscService $miscService |
|
| 101 | ) { |
|
| 102 | $this->userId = $userId; |
|
| 103 | $this->l10n = $l10n; |
|
| 104 | $this->circlesRequest = $circlesRequest; |
|
| 105 | $this->configService = $configService; |
|
| 106 | $this->circlesService = $circlesService; |
|
| 107 | $this->broadcastService = $broadcastService; |
|
| 108 | $this->federatedLinkService = $federatedService; |
|
| 109 | $this->federatedLinksRequest = $federatedLinksRequest; |
|
| 110 | $this->eventsService = $eventsService; |
|
| 111 | ||
| 112 | $this->clientService = $clientService; |
|
| 113 | $this->miscService = $miscService; |
|
| 114 | } |
|
| 115 | ||
| 116 | ||
| 117 | /** |
|
| @@ 112-138 (lines=27) @@ | ||
| 109 | * @param CircleProviderRequest $circleProviderRequest |
|
| 110 | * @param MiscService $miscService |
|
| 111 | */ |
|
| 112 | public function __construct( |
|
| 113 | $userId, |
|
| 114 | IL10N $l10n, |
|
| 115 | IGroupManager $groupManager, |
|
| 116 | ConfigService $configService, |
|
| 117 | CirclesRequest $circlesRequest, |
|
| 118 | MembersRequest $membersRequest, |
|
| 119 | SharesRequest $sharesRequest, |
|
| 120 | FederatedLinksRequest $federatedLinksRequest, |
|
| 121 | GSUpstreamService $gsUpstreamService, |
|
| 122 | EventsService $eventsService, |
|
| 123 | CircleProviderRequest $circleProviderRequest, |
|
| 124 | MiscService $miscService |
|
| 125 | ) { |
|
| 126 | $this->userId = $userId; |
|
| 127 | $this->l10n = $l10n; |
|
| 128 | $this->groupManager = $groupManager; |
|
| 129 | $this->configService = $configService; |
|
| 130 | $this->circlesRequest = $circlesRequest; |
|
| 131 | $this->membersRequest = $membersRequest; |
|
| 132 | $this->sharesRequest = $sharesRequest; |
|
| 133 | $this->federatedLinksRequest = $federatedLinksRequest; |
|
| 134 | $this->gsUpstreamService = $gsUpstreamService; |
|
| 135 | $this->eventsService = $eventsService; |
|
| 136 | $this->circleProviderRequest = $circleProviderRequest; |
|
| 137 | $this->miscService = $miscService; |
|
| 138 | } |
|
| 139 | ||
| 140 | ||
| 141 | /** |
|
| @@ 117-137 (lines=21) @@ | ||
| 114 | * @param FileSharingBroadcaster $fileSharingBroadcaster |
|
| 115 | * @param MiscService $miscService |
|
| 116 | */ |
|
| 117 | public function __construct( |
|
| 118 | $userId, IL10N $l10n, IUserManager $userManager, ConfigService $configService, |
|
| 119 | CirclesRequest $circlesRequest, MembersRequest $membersRequest, SharesRequest $sharesRequest, |
|
| 120 | TokensRequest $tokensRequest, CirclesService $circlesService, EventsService $eventsService, |
|
| 121 | GSUpstreamService $gsUpstreamService, FileSharingBroadcaster $fileSharingBroadcaster, |
|
| 122 | MiscService $miscService |
|
| 123 | ) { |
|
| 124 | $this->userId = $userId; |
|
| 125 | $this->l10n = $l10n; |
|
| 126 | $this->userManager = $userManager; |
|
| 127 | $this->configService = $configService; |
|
| 128 | $this->circlesRequest = $circlesRequest; |
|
| 129 | $this->membersRequest = $membersRequest; |
|
| 130 | $this->sharesRequest = $sharesRequest; |
|
| 131 | $this->tokensRequest = $tokensRequest; |
|
| 132 | $this->circlesService = $circlesService; |
|
| 133 | $this->eventsService = $eventsService; |
|
| 134 | $this->gsUpstreamService = $gsUpstreamService; |
|
| 135 | $this->fileSharingBroadcaster = $fileSharingBroadcaster; |
|
| 136 | $this->miscService = $miscService; |
|
| 137 | } |
|
| 138 | ||
| 139 | ||
| 140 | /** |
|