| Total Complexity | 6 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class UnknownVettingType implements VettingType |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | protected string $type = VettingType::TYPE_UNKNOWN; |
||
| 27 | |||
| 28 | public function __construct() |
||
| 29 | { |
||
| 30 | } |
||
| 31 | |||
| 32 | public function auditLog(): string |
||
| 33 | { |
||
| 34 | return ''; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function jsonSerialize(): array |
||
| 38 | { |
||
| 39 | return ['type' => $this->type()]; |
||
| 40 | } |
||
| 41 | |||
| 42 | public function type(): string |
||
| 43 | { |
||
| 44 | return $this->type; |
||
| 45 | } |
||
| 46 | |||
| 47 | public function __toString(): string |
||
| 50 | } |
||
| 51 | |||
| 52 | public function getDocumentNumber(): ?DocumentNumber |
||
| 53 | { |
||
| 55 | } |
||
| 56 | } |
||
| 57 |