Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 7 | public function __construct($isEcho, $appId, $id, $sequence, $metadata = null, $text = null, array $attachments = []) |
|
34 | { |
||
35 | 7 | parent::__construct($id, $sequence, $text, $attachments); |
|
36 | 7 | $this->isEcho = $isEcho; |
|
37 | 7 | $this->appId = $appId; |
|
38 | 7 | $this->metadata = $metadata; |
|
39 | 7 | } |
|
40 | |||
79 |