Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
12 | class Text extends ValueObject |
||
13 | { |
||
14 | /** |
||
15 | * Create a new instance of the value object. |
||
16 | * |
||
17 | * @param string|null $text |
||
18 | */ |
||
19 | public function __construct(protected ?string $text) |
||
20 | { |
||
21 | // |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * Get the object value. |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function value(): string |
||
32 | } |
||
33 | } |
||
34 |