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