Test Failed
Push — master ( a7be7e...3f892b )
by Curtis
01:44 queued 01:07
created
src/Writer/Indi.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -119,21 +119,21 @@  discard block
 block discarded – undo
119 119
         $birthday = $indi->getBirthday();
120 120
         if (!empty($birthday)) {
121 121
             $output .= $level.' BIRT '."\n";
122
-            $output .= ($level+1).' DATE '.$birthday."\n";
122
+            $output .= ($level + 1).' DATE '.$birthday."\n";
123 123
         }
124 124
 
125 125
         // $deathday
126 126
         $deathday = $indi->getDeathday();
127 127
         if (!empty($deathday)) {
128 128
             $output .= $level.' DEAT '."\n";
129
-            $output .= ($level+1).' DATE '.$deathday."\n";
129
+            $output .= ($level + 1).' DATE '.$deathday."\n";
130 130
         }
131 131
 
132 132
         // $burialday
133 133
         $burialday = $indi->getBurialday();
134 134
         if (!empty($burialday)) {
135 135
             $output .= $level.' BURI '."\n";
136
-            $output .= ($level+1).' DATE '.$burialday."\n";
136
+            $output .= ($level + 1).' DATE '.$burialday."\n";
137 137
         }
138 138
 
139 139
         // $rin
@@ -229,8 +229,8 @@  discard block
 block discarded – undo
229 229
         $chan = $indi->getChan();
230 230
         if (!empty($chan)) {
231 231
             $output .= $level.' CHAN '."\n";
232
-            $output .= ($level+1).' DATE '.$chan[0]."\n";
233
-            $output .= ($level+1).' TIME '.$chan[1]."\n";
232
+            $output .= ($level + 1).' DATE '.$chan[0]."\n";
233
+            $output .= ($level + 1).' TIME '.$chan[1]."\n";
234 234
         }
235 235
 
236 236
         // Bapl
Please login to merge, or discard this patch.