| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | class FreetextData |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var FreetextDetail |
||
| 35 | */ |
||
| 36 | public $freetextDetail; |
||
| 37 | /** |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $longFreetext; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param string|null $freeText |
||
| 44 | * @param string|null $type |
||
| 45 | */ |
||
| 46 | 175 | public function __construct($freeText = null, $type = null) |
|
| 52 |