ClientInterface.php 482 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace ModulesGarden\Servers\ZimbraEmail\App\Libs\Zimbra\Components\Api\Interfaces;
  3. /**
  4. *
  5. * Created by PhpStorm.
  6. * User: Tomasz Bielecki ( tomasz.bi@modulesgarden.com )
  7. * Date: 03.10.19
  8. * Time: 11:08
  9. * Class ClientInterface
  10. */
  11. interface ClientInterface
  12. {
  13. /**
  14. *
  15. * return connection object
  16. *
  17. * @return ConnectionInterface
  18. */
  19. public function getConnection();
  20. public function repository();
  21. //
  22. // public function service();
  23. }