Code Duplication    Length = 14-16 lines in 2 locations

lib/Service/LocalFilesService.php 1 location

@@ 90-103 (lines=14) @@
87
	 * @param ConfigService $configService
88
	 * @param MiscService $miscService
89
	 */
90
	public function __construct(
91
		IRootFolder $rootFolder, IGroupManager $groupManager, IUserManager $userManager,
92
		IManager $shareManager, SharesRequest $sharesRequest, ConfigService $configService,
93
		MiscService $miscService
94
	) {
95
		$this->rootFolder = $rootFolder;
96
		$this->groupManager = $groupManager;
97
		$this->userManager = $userManager;
98
		$this->shareManager = $shareManager;
99
100
		$this->sharesRequest = $sharesRequest;
101
		$this->configService = $configService;
102
		$this->miscService = $miscService;
103
	}
104
105
106
	/**

lib/Service/ExternalFilesService.php 1 location

@@ 110-125 (lines=16) @@
107
	 * @param ConfigService $configService
108
	 * @param MiscService $miscService
109
	 */
110
	public function __construct(
111
		IRootFolder $rootFolder, IAppManager $appManager, IUserManager $userManager,
112
		IGroupManager $groupManager, IManager $shareManager, LocalFilesService $localFilesService,
113
		ConfigService $configService, MiscService $miscService
114
	) {
115
		$this->rootFolder = $rootFolder;
116
		$this->appManager = $appManager;
117
		$this->userManager = $userManager;
118
		$this->groupManager = $groupManager;
119
		$this->shareManager = $shareManager;
120
121
		$this->localFilesService = $localFilesService;
122
123
		$this->configService = $configService;
124
		$this->miscService = $miscService;
125
	}
126
127
128
	/**