for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Event;
use Dazzle\Loop\LoopAwareInterface;
use Dazzle\Loop\LoopInterface;
class AsyncEventEmitter implements EventEmitterInterface, LoopAwareInterface
{
use AsyncEventEmitterTrait;
/**
* @param LoopInterface $loop
*/
public function __construct(LoopInterface $loop)
$this->setLoop($loop);
}