| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class DataSetWithPostValidationHook implements DataSetInterface, PostValidationHookInterface |
||
| 12 | { |
||
| 13 | public bool $hookCalled = false; |
||
| 14 | |||
| 15 | public function getAttributeValue(string $attribute): mixed |
||
| 16 | { |
||
| 17 | return null; |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getData(): ?array |
||
| 23 | } |
||
| 24 | |||
| 25 | public function hasAttribute(string $attribute): bool |
||
| 26 | { |
||
| 27 | return false; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function processValidationResult(Result $result): void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |