for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Channel\Model\Null;
use Dazzle\Channel\Model\ModelInterface;
use Dazzle\Event\BaseEventEmitter;
class NullModel extends BaseEventEmitter implements ModelInterface
{
/**
* @override
* @inheritDoc
*/
public function start($blockEvent = false)
return true;
}
public function stop($blockEvent = false)
public function unicast($alias, $message, $flags)
public function broadcast($message)
return [];
public function isStarted()
return false;
public function isStopped()
public function isConnected($alias)
public function getConnected()