| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace ThurData\Servers\KerioEmail\App\Libs\Kerio\Components\Api\Interfaces;
- /**
- *
- * Created by PhpStorm.
- * User: ThurData
- * Date: 03.10.19
- * Time: 12:12
- * Class ConnectionInterface
- */
- interface ConnectionInterface
- {
- /**
- * check if connection has been established
- *
- * @return bool
- */
- public function isConnected();
- /**
- * return connection error message
- *
- * @return mixed
- */
- public function getConnectionError();
- }
|