for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Loop;
trait LoopAwareTrait
{
/**
* @var LoopInterface|null
*/
protected $loop = null;
* @see LoopAwareInterface::setLoop
public function setLoop(LoopInterface $loop = null)
$this->loop = $loop;
}
* @see LoopAwareInterface::getLoop
public function getLoop()
return $this->loop;