| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 20 | final class AnnotatedValue implements FromNativeInterface, ToNativeInterface, MakeEmptyInterface |
||
| 21 | { |
||
| 22 | use FromToNativeTrait; |
||
| 23 | |||
| 24 | private ?MockValue $mockValue; |
||
| 25 | |||
| 26 | private MockValue $otherMockValue; |
||
| 27 | |||
| 28 | public static function makeEmpty(): self |
||
| 29 | { |
||
| 30 | return new self; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getMockValue(): MockValue |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getOtherMockValue(): MockValue |
||
| 41 | } |
||
| 42 | } |
||
| 43 |