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;
class Roster extends Component
{
public function setClient(XmppClient $client)
parent::setClient($client);
$this->_client->on('init', function() {
});
}