for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Channel;
trait ChannelAwareTrait
{
/**
* @var ChannelInterface|null
*/
protected $channel = null;
* @see ChannelAwareInterface::setChannel
public function setChannel(ChannelInterface $channel = null)
$this->channel = $channel;
}
* @see ChannelAwareInterface::getChannel
public function getChannel()
return $this->channel;