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