Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | final class ConstantTranslator implements Translator |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $translation; |
||
13 | |||
14 | private function __construct(string $translation) |
||
17 | } |
||
18 | |||
19 | public static function withTranslation(string $translation): self |
||
22 | } |
||
23 | |||
24 | public function translate(string $string): string |
||
29 |