INamedBackend.php 392 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Group\Backend;
  7. /**
  8. * @since 22.0.0
  9. */
  10. interface INamedBackend {
  11. /**
  12. * Backend name to be shown in group management
  13. * @return string the name of the backend to be shown
  14. * @since 22.0.0
  15. */
  16. public function getBackendName(): string;
  17. }