aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/TextToImage/IProviderWithUserId.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/TextToImage/IProviderWithUserId.php')
-rw-r--r--lib/public/TextToImage/IProviderWithUserId.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/public/TextToImage/IProviderWithUserId.php b/lib/public/TextToImage/IProviderWithUserId.php
new file mode 100644
index 00000000000..8afb0e56fbb
--- /dev/null
+++ b/lib/public/TextToImage/IProviderWithUserId.php
@@ -0,0 +1,15 @@
+<?php
+
+declare(strict_types=1);
+
+namespace OCP\TextToImage;
+
+/**
+ * @since 29.0.0
+ */
+interface IProviderWithUserId extends IProvider {
+ /**
+ * @since 29.0.0
+ */
+ public function setUserId(?string $userId): void;
+}