| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | public function getPrefixedTranslator(): Nette\Localization\ITranslator |
||
| 20 | { |
||
| 21 | if (NULL === $this->prefixedTranslator) { |
||
| 22 | $this->prefixedTranslator = PrefixedTranslator::createFromClassName($this->getTranslator(), static::class); |
||
| 23 | } |
||
| 24 | |||
| 25 | return $this->prefixedTranslator; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |