12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- declare(strict_types=1);
- namespace OCP\Federation;
- interface ICloudIdManager {
-
- public function resolveCloudId(string $cloudId): ICloudId;
-
- public function getCloudId(string $user, ?string $remote): ICloudId;
-
- public function isValidCloudId(string $cloudId): bool;
-
- public function removeProtocolFromUrl(string $url, bool $httpsOnly = false): string;
- }
|