Code Duplication    Length = 11-12 lines in 3 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/GroupFoldersService.php 1 location

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

lib/Service/LocalFilesService.php 1 location

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