Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | private function buildCountAssignment(Mailcode_Commands_Command_SetVariable $command) : ?string |
||
44 | { |
||
45 | $variable = $command->getCountVariable(); |
||
46 | |||
47 | if ($variable === null) { |
||
48 | return null; |
||
49 | } |
||
50 | |||
51 | return sprintf( |
||
52 | '%s|length', |
||
53 | $this->formatVariableName($variable->getFullName()) |
||
54 | ); |
||
57 |