| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace ThurData\Servers\KerioEmail\Api;
- /**
- * This file is part of the kerio-api-php.
- *
- * Copyright (c) Kerio Technologies s.r.o.
- *
- * For the full copyright and license information, please view
- * the file license.txt that was distributed with this source code
- * or visit Developer Zone. (http://www.kerio.com/developers)
- *
- * Do not modify this source code.
- * Any changes may be overwritten by a new version.
- */
- /**
- * Kerio API Socket Interface.
- *
- * This interface describes basic methods used in HTTP communication.
- *
- * @copyright Copyright © 2012-2012 Kerio Technologies s.r.o.
- * @license http://www.kerio.com/developers/license/sdk-agreement
- * @version 1.4.0.234
- */
- interface KerioApiSocketInterface {
- /**
- * Send data to socket.
- *
- * @param string
- */
- public function send($data);
- }
|