You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/files_external/lib/Settings/PersonalSection.php

25 lines
631 B

<?php
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Files_External\Settings;
use OCA\Files_External\Service\BackendService;
use OCA\Files_External\Service\UserGlobalStoragesService;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\IUserSession;
class PersonalSection extends Section {
public function __construct(
IURLGenerator $url,
IL10N $l,
private IUserSession $userSession,
private UserGlobalStoragesService $userGlobalStoragesService,
private BackendService $backendService,
) {
parent::__construct($url, $l);
}
}