Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
27 | 1 | public function __construct( |
|
28 | bool $isEcho, |
||
29 | ?int $appId, |
||
30 | string $messageId, |
||
31 | ?string $metadata = null, |
||
32 | ?string $text = null, |
||
33 | ?string $quickReply = null, |
||
34 | array $attachments = [] |
||
35 | ) { |
||
36 | 1 | parent::__construct($messageId, $text, $quickReply, $attachments); |
|
37 | |||
38 | 1 | $this->isEcho = $isEcho; |
|
39 | 1 | $this->appId = $appId; |
|
40 | 1 | $this->metadata = $metadata; |
|
41 | 1 | } |
|
42 | |||
80 |