| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | class OnPremise implements VettingTypeInterface |
||
| 24 | { |
||
| 25 | private bool $isPrefered = false; |
||
| 26 | |||
| 27 | public function identifier(): string |
||
| 28 | { |
||
| 29 | return VettingTypeInterface::ON_PREMISE; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function isPrefered(): bool |
||
| 33 | { |
||
| 34 | return $this->isPrefered; |
||
| 35 | } |
||
| 36 | |||
| 37 | public function setPrefered(): void |
||
| 40 | } |
||
| 41 | } |
||
| 42 |