aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorAlexander Piskun <bigcat88@icloud.com>2024-01-14 19:42:58 +0200
committerAlexander Piskun <bigcat88@icloud.com>2024-01-14 22:44:37 +0300
commit156013a711a045eeb0f15ac95bfe92e6a1714334 (patch)
tree1c68b869cc4a5a049d8d21dbf8037e1021ad8b49 /lib/public
parenteaa6d96cf7d447c5b9db5fcb0657dad5bb9c88af (diff)
downloadnextcloud-server-156013a711a045eeb0f15ac95bfe92e6a1714334.tar.gz
nextcloud-server-156013a711a045eeb0f15ac95bfe92e6a1714334.zip
introduce IProviderWithUserId
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com> Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
Diffstat (limited to 'lib/public')
-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;
+}