| 1 | <?php |
||
| 19 | class SlackNotifier implements NotifierInterface |
||
| 20 | { |
||
| 21 | /** @var string */ |
||
| 22 | private $webhookUrl; |
||
| 23 | |||
| 24 | /** @var LoggerInterface */ |
||
| 25 | private $logger; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $webhookUrl |
||
| 29 | * @param LoggerInterface $logger |
||
| 30 | */ |
||
| 31 | public function __construct($webhookUrl, LoggerInterface $logger) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param mixed $data |
||
| 39 | */ |
||
| 40 | public function notify($data) |
||
| 74 | } |
||
| 75 |