1 | <?php |
||
8 | abstract class BaseChannel implements ChannelInterface |
||
9 | { |
||
10 | protected $channelEnabled; |
||
11 | protected $channelConfiguration; |
||
12 | protected $channel; |
||
13 | protected $formatter; |
||
14 | protected $dispatcher; |
||
15 | |||
16 | public function __construct($channelEnabled = true, array $channelConfiguration = [], $channel = '') |
||
22 | |||
23 | public function setDispatcher(MessageDispatcherInterface $dispatcher) |
||
27 | |||
28 | public function setDataFormatter(MessageFormatterInterface $formatter) |
||
32 | } |
||
33 |