1 | <?php |
||
7 | abstract class BaseChannel implements ChannelInterface |
||
8 | { |
||
9 | protected $channelEnabled; |
||
10 | protected $channelConfiguration; |
||
11 | protected $channel; |
||
12 | protected $adapter; |
||
13 | |||
14 | public function __construct($channelEnabled = true, array $channelConfiguration = [], $channel = '') |
||
20 | |||
21 | public function setAdapter(MessageAdapterInterface $adapter) |
||
25 | |||
26 | public function channelName() |
||
30 | } |
||
31 |