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