Files
nextcloud-tables/lib/Service/SuperService.php
Andy Scherzinger 9a46561716 chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-08-08 15:35:37 +02:00

25 lines
559 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Tables\Service;
use Psr\Log\LoggerInterface;
class SuperService {
protected PermissionsService $permissionsService;
protected LoggerInterface $logger;
protected ?string $userId;
public function __construct(LoggerInterface $logger, ?string $userId, PermissionsService $permissionsService) {
$this->permissionsService = $permissionsService;
$this->logger = $logger;
$this->userId = $userId;
}
}