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