| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | #[ORM\Entity(repositoryClass: VettingTypeHintRepository::class)] |
||
| 27 | class VettingTypeHint implements JsonSerializable |
||
| 28 | { |
||
| 29 | #[ORM\Id] |
||
| 30 | #[ORM\Column(length: 36)] |
||
| 31 | public string $institution; |
||
| 32 | |||
| 33 | #[ORM\Column(type: 'stepup_vetting_type_hints')] |
||
| 34 | public VettingTypeHintCollection $hints; |
||
| 35 | |||
| 36 | public function jsonSerialize(): array |
||
| 44 |