Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function send(Message $message): void |
||
39 | { |
||
40 | $this->logger->info(static::class . ' Send'); |
||
41 | $this->logger->info('From:'); |
||
42 | $this->logger->info($message->getFrom()); |
||
43 | $this->logger->info('To:'); |
||
44 | $this->logger->info($message->getTo()); |
||
45 | $this->logger->info('Text:'); |
||
46 | $this->logger->info($message->getText()); |
||
47 | } |
||
49 |