Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class TranslatableItemLabel implements TranslatableItemLabelInterface |
||
13 | { |
||
14 | /** @var string */ |
||
15 | private $value; |
||
16 | /** @var array */ |
||
17 | private $parameters; |
||
18 | |||
19 | public function __construct(string $value, array $parameters = []) |
||
23 | } |
||
24 | |||
25 | public function getValue(): string |
||
28 | } |
||
29 | |||
30 | public function getParameters(): array |
||
33 | } |
||
34 | |||
35 | public function __toString(): string |
||
40 |