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