| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 26 | public function __construct(Chat $chat, User $from, string $text, Location $location = null, Attachment $attachment = null, string $data = null) |
|
| 23 | { |
||
| 24 | 26 | $this->chat = $chat; |
|
| 25 | 26 | $this->from = $from; |
|
| 26 | 26 | $this->text = $text; |
|
| 27 | 26 | $this->location = $location; |
|
| 28 | 26 | $this->attachment = $attachment; |
|
| 29 | 26 | $this->data = $data; |
|
| 30 | 26 | } |
|
| 31 | |||
| 67 |