1 <?php
2 /**
3 * This file is part of the kerio-api-php.
4 *
5 * Copyright (c) Kerio Technologies s.r.o.
6 *
7 * For the full copyright and license information, please view
8 * the file license.txt that was distributed with this source code
9 * or visit Developer Zone. (http://www.kerio.com/developers)
10 *
11 * Do not modify this source code.
12 * Any changes may be overwritten by a new version.
13 */
14
15 /**
16 * Kerio API Socket Interface.
17 *
18 * This interface describes basic methods used in HTTP communication.
19 *
20 * @copyright Copyright © 2012-2012 Kerio Technologies s.r.o.
21 * @license http://www.kerio.com/developers/license/sdk-agreement
22 * @version 1.4.0.234
23 */
24 interface KerioApiSocketInterface {
25
26 /**
27 * Send data to socket.
28 *
29 * @param string
30 */
31 public function send($data);
32 }
33