| Total Complexity | 4 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 28 | class PropDesc implements XmlSerializable { |
||
| 29 | /** |
||
| 30 | * @var string[] |
||
| 31 | */ |
||
| 32 | public $properties = []; |
||
| 33 | /** |
||
| 34 | * @var string |
||
| 35 | */ |
||
| 36 | public $dataType; |
||
| 37 | /** |
||
| 38 | * @var boolean |
||
| 39 | */ |
||
| 40 | public $searchable; |
||
| 41 | /** |
||
| 42 | * @var boolean |
||
| 43 | */ |
||
| 44 | public $selectable; |
||
| 45 | /** |
||
| 46 | * @var boolean |
||
| 47 | */ |
||
| 48 | public $sortable; |
||
| 49 | |||
| 50 | function xmlSerialize(Writer $writer) { |
||
| 72 |