| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | 3 | public function __construct(TextElementInterface $text, SectionBlockElementInterface $accessory = null, TextElementInterface ...$fields) |
|
| 34 | { |
||
| 35 | 3 | $this->type = MessageTypeEnum::BLOCK_SECTION; |
|
| 36 | 3 | $this->text = $text; |
|
| 37 | 3 | $this->accessory = $accessory; |
|
| 38 | 3 | $this->fields = $fields; |
|
| 39 | 3 | } |
|
| 40 | } |
||
| 41 |