@@ -48,11 +48,11 @@ |
||
| 48 | 48 | private function makeLine($text, $comment = null) |
| 49 | 49 | { |
| 50 | 50 | $pad = $this->longestVarLength(); |
| 51 | - $output = str_repeat(' ', $this->padding). |
|
| 51 | + $output = str_repeat(' ', $this->padding) . |
|
| 52 | 52 | str_pad($text, $pad); |
| 53 | 53 | |
| 54 | 54 | if (null !== $comment) { |
| 55 | - $output .= ' '.ResourceRecord::COMMENT_DELIMINATOR.$comment; |
|
| 55 | + $output .= ' ' . ResourceRecord::COMMENT_DELIMINATOR . $comment; |
|
| 56 | 56 | } |
| 57 | 57 | $output .= PHP_EOL; |
| 58 | 58 | |