Code Duplication    Length = 11-13 lines in 2 locations

lib/Service/ExternalFilesService.php 1 location

@@ 82-92 (lines=11) @@
79
	 * @param ConfigService $configService
80
	 * @param MiscService $miscService
81
	 */
82
	public function __construct(
83
		IRootFolder $rootFolder, IUserManager $userManager, IManager $shareManager,
84
		ConfigService $configService, MiscService $miscService
85
	) {
86
		$this->rootFolder = $rootFolder;
87
		$this->userManager = $userManager;
88
		$this->shareManager = $shareManager;
89
90
		$this->configService = $configService;
91
		$this->miscService = $miscService;
92
	}
93
94
95
	/**

lib/Service/FilesService.php 1 location

@@ 95-107 (lines=13) @@
92
	 *
93
	 * @internal param IProviderFactory $factory
94
	 */
95
	public function __construct(
96
		IRootFolder $rootFolder, IUserManager $userManager, IManager $shareManager,
97
		ConfigService $configService, ExternalFilesService $externalFilesService,
98
		MiscService $miscService
99
	) {
100
		$this->rootFolder = $rootFolder;
101
		$this->userManager = $userManager;
102
		$this->shareManager = $shareManager;
103
104
		$this->configService = $configService;
105
		$this->externalFilesService = $externalFilesService;
106
		$this->miscService = $miscService;
107
	}
108
109
110
	/**