| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Interfaces;
- /**
- *
- * Created by PhpStorm.
- * User: Tomasz Bielecki ( tomasz.bi@thurdata.com )
- * Date: 03.10.19
- * Time: 11:08
- * Class ClientInterface
- */
- interface ClientInterface
- {
- /**
- *
- * return connection object
- *
- * @return ConnectionInterface
- */
- public function getConnection();
- public function repository();
- //
- // public function service();
- }
|