1
0

IIdentifier.php 297 B

12345678910111213
  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\Files_External\Lib;
  7. interface IIdentifier {
  8. public function getIdentifier(): string;
  9. public function setIdentifier(string $identifier): self;
  10. }