Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class DialogOption implements \Stringable |
||
8 | { |
||
9 | 1 | public function __construct( |
|
10 | private string $dialog, |
||
11 | private PlayerDialogOptionCollection $responses, |
||
12 | 1 | ) {} |
|
13 | |||
14 | public function getResponses(): PlayerDialogOptionCollection |
||
17 | } |
||
18 | |||
19 | public function __toString(): string |
||
22 | } |
||
23 | } |
||
24 |