123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- declare(strict_types=1);
- namespace OCP\OCM;
- use OCP\OCM\Exceptions\OCMProviderException;
- interface IOCMDiscoveryService {
-
- public function discover(string $remote, bool $skipCache = false): IOCMProvider;
- }
|