aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Lib/IIdentifier.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/lib/Lib/IIdentifier.php')
-rw-r--r--apps/files_external/lib/Lib/IIdentifier.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/files_external/lib/Lib/IIdentifier.php b/apps/files_external/lib/Lib/IIdentifier.php
new file mode 100644
index 00000000000..0677409a3cf
--- /dev/null
+++ b/apps/files_external/lib/Lib/IIdentifier.php
@@ -0,0 +1,14 @@
+<?php
+
+/**
+ * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+namespace OCA\Files_External\Lib;
+
+interface IIdentifier {
+
+ public function getIdentifier(): string;
+
+ public function setIdentifier(string $identifier): self;
+}