for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* XMPP Library
*
* Copyright (C) 2016, Some right reserved.
* @author Kacper "Kadet" Donat <[email protected]>
* Contact with author:
* Xmpp: [email protected]
* E-mail: [email protected]
* From Kadet with love.
*/
namespace Kadet\Xmpp\Module;
use Kadet\Xmpp\XmppClient;
abstract class ClientModule implements ClientModuleInterface
{
* Reference to XMPP Client instance.
* @var XmppClient
protected $_client;
public function setClient(XmppClient $client)
$this->_client = $client;
}