IAuditLogger.php 340 B

123456789101112131415
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCA\AdminAudit;
  7. use Psr\Log\LoggerInterface;
  8. /**
  9. * Interface for a logger that logs in the audit log file instead of the normal log file
  10. */
  11. interface IAuditLogger extends LoggerInterface {
  12. }