| @@ 104-118 (lines=15) @@ | ||
| 101 | * @param MemberService $memberService |
|
| 102 | * @param ConfigService $configService |
|
| 103 | */ |
|
| 104 | public function __construct( |
|
| 105 | FederatedUserService $federatedUserService, |
|
| 106 | CircleService $circleService, |
|
| 107 | MemberService $memberService, |
|
| 108 | InterfaceService $interfaceService, |
|
| 109 | ConfigService $configService |
|
| 110 | ) { |
|
| 111 | parent::__construct(); |
|
| 112 | ||
| 113 | $this->federatedUserService = $federatedUserService; |
|
| 114 | $this->circleService = $circleService; |
|
| 115 | $this->memberService = $memberService; |
|
| 116 | $this->interfaceService = $interfaceService; |
|
| 117 | $this->configService = $configService; |
|
| 118 | } |
|
| 119 | ||
| 120 | ||
| 121 | /** |
|
| @@ 96-106 (lines=11) @@ | ||
| 93 | * @param MemberService $membersService |
|
| 94 | * @param ConfigService $configService |
|
| 95 | */ |
|
| 96 | public function __construct( |
|
| 97 | FederatedUserService $federatedUserService, RemoteService $remoteService, |
|
| 98 | CircleService $circlesService, MemberService $membersService, ConfigService $configService |
|
| 99 | ) { |
|
| 100 | parent::__construct(); |
|
| 101 | $this->federatedUserService = $federatedUserService; |
|
| 102 | $this->remoteService = $remoteService; |
|
| 103 | $this->circleService = $circlesService; |
|
| 104 | $this->memberService = $membersService; |
|
| 105 | $this->configService = $configService; |
|
| 106 | } |
|
| 107 | ||
| 108 | ||
| 109 | /** |
|
| @@ 91-103 (lines=13) @@ | ||
| 88 | * @param MemberService $memberService |
|
| 89 | * @param CirclesQueryHelper $circlesQueryHelper |
|
| 90 | */ |
|
| 91 | public function __construct( |
|
| 92 | IUserSession $userSession, |
|
| 93 | FederatedUserService $federatedUserService, |
|
| 94 | CircleService $circleService, |
|
| 95 | MemberService $memberService, |
|
| 96 | CirclesQueryHelper $circlesQueryHelper |
|
| 97 | ) { |
|
| 98 | $this->userSession = $userSession; |
|
| 99 | $this->federatedUserService = $federatedUserService; |
|
| 100 | $this->circleService = $circleService; |
|
| 101 | $this->memberService = $memberService; |
|
| 102 | $this->circlesQueryHelper = $circlesQueryHelper; |
|
| 103 | } |
|
| 104 | ||
| 105 | ||
| 106 | /** |
|