* @copyright 2014 Fabian Grutschus. All rights reserved. * @license BSD * @link http://github.com/fabiang/xmpp */ namespace Fabiang\Xmpp; /** * Classes that take options should implent this interface. * * @package Xmpp */ interface OptionsAwareInterface { /** * Set options. * * @param Options $options * @return $this */ public function setOptions(Options $options); /** * Get options. * * @return Options */ public function getOptions(); }