mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01:00
Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com> Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
16 lines
217 B
PHP
16 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;
|
|
}
|