Code Duplication    Length = 11-15 lines in 3 locations

lib/Command/CirclesDetails.php 1 location

@@ 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
	/**

lib/Command/CirclesReport.php 1 location

@@ 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
	/**

lib/Command/CirclesList.php 1 location

@@ 108-118 (lines=11) @@
105
	 * @param CircleService $circleService
106
	 * @param ConfigService $configService
107
	 */
108
	public function __construct(
109
		ModelManager $modelManager, FederatedUserService $federatedUserService, RemoteService $remoteService,
110
		CircleService $circleService, ConfigService $configService
111
	) {
112
		parent::__construct();
113
		$this->modelManager = $modelManager;
114
		$this->federatedUserService = $federatedUserService;
115
		$this->remoteService = $remoteService;
116
		$this->circleService = $circleService;
117
		$this->configService = $configService;
118
	}
119
120
121
	protected function configure() {