| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public static function getTranslationKey( |
||
| 17 | string $translationPattern, |
||
| 18 | string $adminName, |
||
| 19 | string $key |
||
| 20 | ): string { |
||
| 21 | $translationPattern = str_replace('{key}', $key, $translationPattern); |
||
| 22 | $translationPattern = str_replace('{admin}', $adminName, $translationPattern); |
||
| 23 | |||
| 24 | return $translationPattern; |
||
| 25 | } |
||
| 47 |