| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 2 | public function __construct(Channel $channel, Chat $chat, User $recipient, string $endpoint, array $parameters = []) |
|
| 26 | { |
||
| 27 | 2 | $this->channel = $channel; |
|
| 28 | 2 | $this->chat = $chat; |
|
| 29 | 2 | $this->recipient = $recipient; |
|
| 30 | 2 | $this->endpoint = $endpoint; |
|
| 31 | 2 | $this->parameters = $parameters; |
|
| 32 | 2 | } |
|
| 33 | |||
| 40 |