* @copyright 2014 Fabian Grutschus. All rights reserved. * @license BSD * @link http://github.com/fabiang/xmpp */ namespace Fabiang\Xmpp\Connection; use Fabiang\Xmpp\Stream\SocketClient; /** * Interface for connection that connect to a socket. * * @package Xmpp\Connection */ interface SocketConnectionInterface { /** * Set socket instance. * * @param SocketClient $socket * @return $this */ public function setSocket(SocketClient $socket); }