Code Duplication    Length = 11-15 lines in 2 locations

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/CirclesDetails.php 1 location

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