1 | <?php |
||
8 | class Broadcast implements BroadcastNotifiableInterface, NotifiableInterface, SlackableInterface |
||
9 | { |
||
10 | protected $slackWebhook; |
||
11 | protected $subscribedChannels = [ |
||
12 | 'slack', |
||
13 | ]; |
||
14 | |||
15 | public function setSlackWebhook($webhook) |
||
19 | |||
20 | public function getSlackWebhook() |
||
24 | |||
25 | public function setPusherChannel($channelName) |
||
29 | |||
30 | public function getPusherChannel() |
||
34 | |||
35 | public function getSubscribedChannels() |
||
39 | |||
40 | public function isSubscribedToChannel($channel) |
||
44 | } |