* @copyright 2014 Fabian Grutschus. All rights reserved. * @license BSD * @link http://github.com/fabiang/xmpp */ namespace Fabiang\Xmpp\Protocol; /** * Protocol setting for Xmpp. * * @package Xmpp\Protocol */ interface ProtocolImplementationInterface { /** * Protocol implementations should be turned into an string. * * @return string */ public function toString(); }