aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/TextToImage/IProviderWithUserId.php
blob: 8afb0e56fbb0a8f0be884ba3dc0c3946a3914511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}