| @@ 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 | /** |
|
| @@ 98-115 (lines=18) @@ | ||
| 95 | * @param IClientService $clientService |
|
| 96 | * @param MiscService $miscService |
|
| 97 | */ |
|
| 98 | public function __construct( |
|
| 99 | $userId, IL10N $l10n, CirclesRequest $circlesRequest, ConfigService $configService, |
|
| 100 | CirclesService $circlesService, BroadcastService $broadcastService, |
|
| 101 | FederatedLinksRequest $federatedLinksRequest, EventsService $eventsService, |
|
| 102 | IClientService $clientService, MiscService $miscService |
|
| 103 | ) { |
|
| 104 | $this->userId = $userId; |
|
| 105 | $this->l10n = $l10n; |
|
| 106 | $this->circlesRequest = $circlesRequest; |
|
| 107 | $this->configService = $configService; |
|
| 108 | $this->circlesService = $circlesService; |
|
| 109 | $this->broadcastService = $broadcastService; |
|
| 110 | $this->federatedLinksRequest = $federatedLinksRequest; |
|
| 111 | $this->eventsService = $eventsService; |
|
| 112 | ||
| 113 | $this->clientService = $clientService; |
|
| 114 | $this->miscService = $miscService; |
|
| 115 | } |
|
| 116 | ||
| 117 | // |
|
| 118 | ||
| @@ 101-125 (lines=25) @@ | ||
| 98 | * @param IClientService $clientService |
|
| 99 | * @param MiscService $miscService |
|
| 100 | */ |
|
| 101 | public function __construct( |
|
| 102 | $userId, |
|
| 103 | IUserSession $userSession, |
|
| 104 | IURLGenerator $urlGenerator, |
|
| 105 | ConfigService $configService, |
|
| 106 | SharingFrameRequest $sharingFrameRequest, |
|
| 107 | CirclesRequest $circlesRequest, |
|
| 108 | FederatedLinksRequest $federatedLinksRequest, |
|
| 109 | BroadcastService $broadcastService, |
|
| 110 | FederatedLinkService $federatedLinkService, |
|
| 111 | IClientService $clientService, |
|
| 112 | MiscService $miscService |
|
| 113 | ) { |
|
| 114 | $this->userId = $userId; |
|
| 115 | $this->userSession = $userSession; |
|
| 116 | $this->urlGenerator = $urlGenerator; |
|
| 117 | $this->configService = $configService; |
|
| 118 | $this->sharingFrameRequest = $sharingFrameRequest; |
|
| 119 | $this->circlesRequest = $circlesRequest; |
|
| 120 | $this->federatedLinksRequest = $federatedLinksRequest; |
|
| 121 | $this->broadcastService = $broadcastService; |
|
| 122 | $this->federatedLinkService = $federatedLinkService; |
|
| 123 | $this->clientService = $clientService; |
|
| 124 | $this->miscService = $miscService; |
|
| 125 | } |
|
| 126 | ||
| 127 | ||
| 128 | /** |
|
| @@ 99-116 (lines=18) @@ | ||
| 96 | * @param ConfigService $configService |
|
| 97 | * @param MiscService $miscService |
|
| 98 | */ |
|
| 99 | public function __construct( |
|
| 100 | $userId, ITimeFactory $time, IActivityManager $activityManager, |
|
| 101 | INotificationManager $notificationManager, IUserManager $userManager, IURLGenerator $urlGenerator, |
|
| 102 | EventDispatcher $eventDispatcher, CirclesRequest $circlesRequest, MembersRequest $membersRequest, |
|
| 103 | ConfigService $configService, MiscService $miscService |
|
| 104 | ) { |
|
| 105 | $this->userId = $userId; |
|
| 106 | $this->time = $time; |
|
| 107 | $this->activityManager = $activityManager; |
|
| 108 | $this->notificationManager = $notificationManager; |
|
| 109 | $this->userManager = $userManager; |
|
| 110 | $this->urlGenerator = $urlGenerator; |
|
| 111 | $this->eventDispatcher = $eventDispatcher; |
|
| 112 | $this->circlesRequest = $circlesRequest; |
|
| 113 | $this->membersRequest = $membersRequest; |
|
| 114 | $this->configService = $configService; |
|
| 115 | $this->miscService = $miscService; |
|
| 116 | } |
|
| 117 | ||
| 118 | ||
| 119 | /** |
|