12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace OCP\Share;
- use OC\Share20\Exception\ProviderException;
- interface IProviderFactory {
-
- public function getProvider($id);
-
- public function getProviderForType($shareType);
-
- public function getAllProviders();
-
- public function registerProvider(string $shareProvier): void;
- }
|