| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct(string $message) |
||
| 18 | { |
||
| 19 | parent::__construct($message); |
||
| 20 | [$this->kicker] = explode(' ', $message); |
||
| 21 | [$this->kicker] = explode('!', $this->kicker); |
||
| 22 | $this->kicker = substr($this->kicker, 1); |
||
| 23 | |||
| 24 | [$this->target, $this->user] = explode(' ', $this->commandsuffix ?? ''); |
||
| 25 | $this->message = $this->payload; |
||
| 26 | } |
||
| 55 |