| Total Complexity | 2 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ListItem |
||
| 8 | { |
||
| 9 | 3 | public function __construct( |
|
| 10 | public ?string $token = null, |
||
| 11 | public ?Image $image = null, |
||
| 12 | public ?TextContent $textContent = null |
||
| 13 | ) { |
||
| 14 | 3 | } |
|
| 15 | |||
| 16 | 3 | public static function create(?string $token = null, ?Image $image = null, ?TextContent $textContent = null): self |
|
| 19 | } |
||
| 20 | } |
||
| 21 |