mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 23:37:26 -05:00
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;
|
||
|
|
}
|