| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function __construct(string $command) |
||
| 18 | { |
||
| 19 | parent::__construct($command); |
||
| 20 | if ('#' === $this->commandsuffix[0]) { |
||
| 21 | [$this->target, $this->mode] = explode(' ', $this->commandsuffix); |
||
|
|
|||
| 22 | $this->user = $this->payload; |
||
| 23 | $this->channel = new IrcChannel($this->target); |
||
| 24 | } else { |
||
| 25 | $this->user = $this->commandsuffix; |
||
| 26 | $this->mode = $this->payload; |
||
| 27 | } |
||
| 40 |