Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class PrefixTranslationKeyTokenModifier extends TokenModifier |
||
9 | { |
||
10 | private $translationKeyPrefix; |
||
11 | |||
12 | 12 | public function __construct(string $translationKeyPrefix) |
|
13 | { |
||
14 | 12 | $this->translationKeyPrefix = $translationKeyPrefix; |
|
15 | 12 | } |
|
16 | |||
17 | 12 | protected function modify(Token $token): Token |
|
21 | } |
||
22 | } |
||
23 |