1 | <?php |
||
14 | class SlackGateway extends Gateway |
||
15 | { |
||
16 | /** |
||
17 | * @var Client |
||
18 | */ |
||
19 | private $client; |
||
20 | |||
21 | /** |
||
22 | * @param Client $client |
||
23 | */ |
||
24 | public function __construct(Client $client) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | protected function doSend(Notification $notification): void |
||
48 | |||
49 | /** |
||
50 | * @return string |
||
51 | */ |
||
52 | public function destinationType(): string |
||
56 | } |
||
57 |