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