| @@ 83-97 (lines=15) @@ | ||
| 80 | * @param ConfigService $configService |
|
| 81 | * @param MiscService $miscService |
|
| 82 | */ |
|
| 83 | public function __construct( |
|
| 84 | $userId, IManager $activityManager, IUserManager $userManager, |
|
| 85 | EventDispatcher $eventDispatcher, CirclesRequest $circlesRequest, |
|
| 86 | MembersRequest $membersRequest, |
|
| 87 | ConfigService $configService, MiscService $miscService |
|
| 88 | ) { |
|
| 89 | $this->userId = $userId; |
|
| 90 | $this->activityManager = $activityManager; |
|
| 91 | $this->userManager = $userManager; |
|
| 92 | $this->eventDispatcher = $eventDispatcher; |
|
| 93 | $this->circlesRequest = $circlesRequest; |
|
| 94 | $this->membersRequest = $membersRequest; |
|
| 95 | $this->configService = $configService; |
|
| 96 | $this->miscService = $miscService; |
|
| 97 | } |
|
| 98 | ||
| 99 | ||
| 100 | /** |
|
| @@ 85-100 (lines=16) @@ | ||
| 82 | * @param EventsService $eventsService |
|
| 83 | * @param MiscService $miscService |
|
| 84 | */ |
|
| 85 | public function __construct( |
|
| 86 | $userId, IL10N $l10n, IGroupManager $groupManager, IUserManager $userManager, |
|
| 87 | CirclesRequest $circlesRequest, |
|
| 88 | MembersRequest $membersRequest, CirclesService $circlesService, |
|
| 89 | EventsService $eventsService, MiscService $miscService |
|
| 90 | ) { |
|
| 91 | $this->userId = $userId; |
|
| 92 | $this->l10n = $l10n; |
|
| 93 | $this->groupManager = $groupManager; |
|
| 94 | $this->userManager = $userManager; |
|
| 95 | $this->circlesRequest = $circlesRequest; |
|
| 96 | $this->membersRequest = $membersRequest; |
|
| 97 | $this->circlesService = $circlesService; |
|
| 98 | $this->eventsService = $eventsService; |
|
| 99 | $this->miscService = $miscService; |
|
| 100 | } |
|
| 101 | ||
| 102 | ||
| 103 | /** |
|
| @@ 91-111 (lines=21) @@ | ||
| 88 | * @param IClientService $clientService |
|
| 89 | * @param MiscService $miscService |
|
| 90 | */ |
|
| 91 | public function __construct( |
|
| 92 | $userId, |
|
| 93 | ConfigService $configService, |
|
| 94 | SharingFrameRequest $sharingFrameRequest, |
|
| 95 | CirclesRequest $circlesRequest, |
|
| 96 | FederatedLinksRequest $federatedLinksRequest, |
|
| 97 | BroadcastService $broadcastService, |
|
| 98 | FederatedLinkService $federatedLinkService, |
|
| 99 | IClientService $clientService, |
|
| 100 | MiscService $miscService |
|
| 101 | ) { |
|
| 102 | $this->userId = $userId; |
|
| 103 | $this->configService = $configService; |
|
| 104 | $this->sharingFrameRequest = $sharingFrameRequest; |
|
| 105 | $this->circlesRequest = $circlesRequest; |
|
| 106 | $this->federatedLinksRequest = $federatedLinksRequest; |
|
| 107 | $this->broadcastService = $broadcastService; |
|
| 108 | $this->federatedLinkService = $federatedLinkService; |
|
| 109 | $this->clientService = $clientService; |
|
| 110 | $this->miscService = $miscService; |
|
| 111 | } |
|
| 112 | ||
| 113 | ||
| 114 | /** |
|
| @@ 87-103 (lines=17) @@ | ||
| 84 | * @param ConfigService $configService |
|
| 85 | * @param MiscService $miscService |
|
| 86 | */ |
|
| 87 | public function __construct( |
|
| 88 | $userId, |
|
| 89 | IURLGenerator $urlGenerator, |
|
| 90 | GSEventsRequest $gsEventsRequest, |
|
| 91 | CirclesRequest $circlesRequest, |
|
| 92 | GlobalScaleService $globalScaleService, |
|
| 93 | ConfigService $configService, |
|
| 94 | MiscService $miscService |
|
| 95 | ) { |
|
| 96 | $this->userId = $userId; |
|
| 97 | $this->urlGenerator = $urlGenerator; |
|
| 98 | $this->gsEventsRequest = $gsEventsRequest; |
|
| 99 | $this->circlesRequest = $circlesRequest; |
|
| 100 | $this->globalScaleService = $globalScaleService; |
|
| 101 | $this->configService = $configService; |
|
| 102 | $this->miscService = $miscService; |
|
| 103 | } |
|
| 104 | ||
| 105 | ||
| 106 | /** |
|
| @@ 100-120 (lines=21) @@ | ||
| 97 | * @param ConfigService $configService |
|
| 98 | * @param MiscService $miscService |
|
| 99 | */ |
|
| 100 | public function __construct( |
|
| 101 | SharesRequest $sharesRequest, |
|
| 102 | TokensRequest $tokensRequest, |
|
| 103 | CirclesRequest $circlesRequest, |
|
| 104 | MembersRequest $membersRequest, |
|
| 105 | CirclesService $circlesService, |
|
| 106 | MembersService $membersService, |
|
| 107 | EventsService $eventsService, |
|
| 108 | ConfigService $configService, |
|
| 109 | MiscService $miscService |
|
| 110 | ) { |
|
| 111 | $this->sharesRequest = $sharesRequest; |
|
| 112 | $this->tokensRequest = $tokensRequest; |
|
| 113 | $this->circlesRequest = $circlesRequest; |
|
| 114 | $this->membersRequest = $membersRequest; |
|
| 115 | $this->circlesService = $circlesService; |
|
| 116 | $this->membersService = $membersService; |
|
| 117 | $this->eventsService = $eventsService; |
|
| 118 | $this->configService = $configService; |
|
| 119 | $this->miscService = $miscService; |
|
| 120 | } |
|
| 121 | ||
| 122 | ||
| 123 | /** |
|