| Total Complexity | 1 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class TIMTextElem extends Message |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Message type. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $type = 'TIMTextElem'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Properties. |
||
| 22 | * |
||
| 23 | * @var array |
||
| 24 | */ |
||
| 25 | protected $properties = ['Text']; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * required attr |
||
| 29 | * |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | protected $required = ['Text']; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * TIMTextElem constructor. |
||
| 36 | * |
||
| 37 | * @param string $Text |
||
| 38 | */ |
||
| 39 | 3 | public function __construct(string $Text) |
|
| 44 |