| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function format(NotificationInterface $notification) |
||
| 13 | { |
||
| 14 | $notification->setChannel($this->channelName); |
||
| 15 | parent::format($notification); |
||
| 16 | |||
| 17 | $dispatchData = []; |
||
| 18 | $messageData = self::createMessagaData([]); |
||
| 19 | |||
| 20 | return self::createMessage($dispatchData, $messageData, $this->channelName); |
||
| 21 | } |
||
| 22 | |||
| 37 | } |