Passed
Branch master (6a7148)
by Curtis
01:48
created
library/PhpGedcom/Writer/Note.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $id = $note->getId();
32 32
         if(!empty($id)){
33 33
             $output.= $level." ".$id." "." NOTE \n";
34
-        }else{
34
+        } else{
35 35
             return $output;
36 36
         }
37 37
         
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Refn.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $_refn = $refn->getRefn();
32 32
         if(empty($_refn)){
33 33
             return $output;
34
-        }else{
34
+        } else{
35 35
             $output.=$level." REFN ".$_refn."\n";
36 36
         }
37 37
         // level up
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Fam.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $id = $fam->getId();
32 32
         if(empty($id)){
33 33
             return $output;
34
-        }else{
34
+        } else{
35 35
             $output.=$level." @".$id."@ FAM "."\n";
36 36
         }
37 37
         // level up
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Head/Sour.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $_sour = $sour->getSour();
32 32
         if($_sour){
33 33
             $output.=$level." SOUR ".$_sour."\n";
34
-        }else{
34
+        } else{
35 35
             return $output;
36 36
         }
37 37
 
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Head/Sour/Data.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $_data = $data->getData();
32 32
         if($_data){
33 33
             $output.=$level." DATA ".$_data."\n";
34
-        }else{
34
+        } else{
35 35
             return $output;
36 36
         }
37 37
 
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Head/Sour/Corp.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $_corp = $corp->getCorp();
32 32
         if($_corp){
33 33
             $output.=$level." CORP ".$_corp."\n";
34
-        }else{
34
+        } else{
35 35
             return $output;
36 36
         }
37 37
 
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Head/Char.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $_char = $char->getChar();
33 33
         if($_char){
34 34
             $output.=$level." CHAR ".$_char."\n";
35
-        }else{
35
+        } else{
36 36
             return $output;
37 37
         }
38 38
 
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Head/Date.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         $_date = $date->getDate();
32 32
         if($_date){
33 33
             $output .=$level." DATE ".$_date."\n";
34
-        }else{
34
+        } else{
35 35
             return $output;
36 36
         }
37 37
 
Please login to merge, or discard this patch.
library/PhpGedcom/Writer/Caln.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         $_caln = $caln->getCaln();
31 31
         if(empty($_caln)){
32 32
             return $output;
33
-        }else{
33
+        } else{
34 34
             $output.=$level." CALN ".$_caln."\n";
35 35
         }
36 36
 
Please login to merge, or discard this patch.