| 1 | <?php |
||
| 23 | abstract class VettingType implements JsonSerializable |
||
| 24 | { |
||
| 25 | public const TYPE_ON_PREMISE = 'on-premise'; |
||
| 26 | public const TYPE_SELF_VET = 'self-vet'; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var string |
||
| 30 | */ |
||
| 31 | protected $type; |
||
| 32 | |||
| 33 | |||
| 34 | abstract public function auditLog(): string; |
||
| 35 | |||
| 36 | public function jsonSerialize(): array |
||
| 40 | |||
| 41 | public function type(): string |
||
| 45 | |||
| 46 | public function __toString(): string |
||
| 50 | } |
||
| 51 |