| Total Complexity | 0 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | trait DaftObjectTrait |
||
| 10 | { |
||
| 11 | abstract protected function NudgePropertyValue( |
||
| 12 | string $property, |
||
| 13 | $value, |
||
| 14 | bool $autoTrimStrings = false, |
||
| 15 | bool $throwIfNotUnique = false |
||
| 16 | ) : void; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param array<int, bool> $value |
||
| 20 | */ |
||
| 21 | abstract protected function NudgePropertyWithUniqueBooleans( |
||
| 22 | string $property, |
||
| 23 | array $value |
||
| 24 | ) : void; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return scalar|array|object|null the property value |
||
| 28 | */ |
||
| 29 | abstract protected function RetrievePropertyValueFromData(string $property); |
||
| 30 | } |
||
| 31 |