Completed
Push — master ( 5c7ca0...548e97 )
by Sam
02:10
created
lib/Rdata/FormattableTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,11 +48,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.