Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function translate(Mailcode_Commands_Command_ShowPrice $command): string |
||
25 | { |
||
26 | $statement = $this->renderPrice( |
||
27 | $command->getVariableName(), |
||
28 | $command->getLocalCurrency(), |
||
29 | $command->isAbsolute(), |
||
30 | $command->isCurrencyNameEnabled() |
||
31 | ); |
||
32 | |||
33 | return $this->renderVariableEncodings($command, $statement); |
||
34 | } |
||
36 |