mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 00:18:42 +00:00
5c49a54801
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
16 lines
340 B
PHP
16 lines
340 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\AdminAudit;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Interface for a logger that logs in the audit log file instead of the normal log file
|
|
*/
|
|
interface IAuditLogger extends LoggerInterface {
|
|
}
|