Code Duplication    Length = 12-13 lines in 3 locations

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

lib/Service/ExternalFilesService.php 1 location

@@ 86-98 (lines=13) @@
83
	 * @param ConfigService $configService
84
	 * @param MiscService $miscService
85
	 */
86
	public function __construct(
87
		IRootFolder $rootFolder, IUserManager $userManager, IManager $shareManager,
88
		LocalFilesService $localFilesService, ConfigService $configService, MiscService $miscService
89
	) {
90
		$this->rootFolder = $rootFolder;
91
		$this->userManager = $userManager;
92
		$this->shareManager = $shareManager;
93
94
		$this->localFilesService = $localFilesService;
95
96
		$this->configService = $configService;
97
		$this->miscService = $miscService;
98
	}
99
100
101
	/**

lib/Service/GroupFoldersService.php 1 location

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