| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class InfoEntry extends BaseModel { |
||
| 10 | public ?string $id = null; |
||
| 11 | public ?string $comparable_id = null; |
||
| 12 | public string $item_hash; |
||
| 13 | public string $content; |
||
| 14 | public string $content_format; |
||
| 15 | public string $info_type; |
||
| 16 | public bool $null_entry; |
||
| 17 | public ?string $date_registered = null; |
||
| 18 | public ?string $date_published = null; |
||
| 19 | public ?string $date_updated = null; |
||
| 20 | public ?string $date_received = null; |
||
| 21 | public AnnotationList $annotations; |
||
| 22 | public DetailGroup $details; |
||
| 23 | public EntryList $sub_entries; |
||
| 24 | |||
| 25 | public function get_detail(string $slug): ?Detail { |
||
| 36 |