0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-24 17:06:50 +00:00
nextcloud_server/lib/public/TextToImage/IProviderWithUserId.php
Alexander Piskun 156013a711
introduce IProviderWithUserId
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
2024-01-14 22:44:37 +03:00

15 lines
217 B
PHP

<?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;
}