| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | class CodeTranslation extends HubL implements Mailcode_Translator_Command_Code |
||
| 23 | { |
||
| 24 | private string $template = <<<'EOD' |
||
| 25 | {# |
||
| 26 | Wrapper IF for the code command to insert native %1$s commands. |
||
| 27 | This is needed for technical Mailcode reasons. |
||
| 28 | #} |
||
| 29 | {% if true %}%2$s{% endif %} |
||
| 30 | EOD; |
||
| 31 | |||
| 32 | public function translate(Mailcode_Commands_Command_Code $command): string |
||
| 41 |