| 1 | <?php |
||
| 5 | trait ChannelCompositeAwareTrait |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var ChannelCompositeInterface|null |
||
| 9 | */ |
||
| 10 | protected $channel = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @see ChannelCompositeAwareInterface::setChannel |
||
| 14 | */ |
||
| 15 | 3 | public function setChannel(ChannelCompositeInterface $channel = null) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @see ChannelCompositeAwareInterface::getChannel |
||
| 22 | */ |
||
| 23 | 2 | public function getChannel() |
|
| 27 | } |
||
| 28 |