| Total Complexity | 4 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Detail { |
||
| 10 | public string $source; |
||
| 11 | public ?string $slug = null; |
||
| 12 | public ?string $display_as = null; |
||
| 13 | public ?string $common_key = null; |
||
| 14 | public ?string $description = null; |
||
| 15 | public ?string $type = null; |
||
| 16 | public $value = null; |
||
| 17 | public AnnotationList $annotations; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @return \Iterator<Detail>| |
||
| 21 | */ |
||
| 22 | public function sub_details(): \Iterator { |
||
| 41 |