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