mirror of
https://github.com/nextcloud/server.git
synced 2025-03-12 23:47:25 +00:00

Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com> Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
15 lines
217 B
PHP
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;
|
|
}
|