1
0

IIdentifier.php 878 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * @copyright 2022 Carl Schwan <carl@carlschwan.eu>
  4. *
  5. * @license AGPL-3.0-or-later
  6. *
  7. * This code is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU Affero General Public License, version 3,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License, version 3,
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>
  18. *
  19. */
  20. namespace OCA\Files_External\Lib;
  21. interface IIdentifier {
  22. public function getIdentifier(): string;
  23. public function setIdentifier(string $identifier): self;
  24. }