mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
f12cecb684
Signed-off-by: provokateurin <kate@provokateurin.de>
28 lines
657 B
PHP
28 lines
657 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* 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);
|
|
}
|
|
}
|