Test Setup Failed
Branch master (c7f1db)
by Curtis
28:42 queued 16:05
created
src/Writer/Addr.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param int                    $level
22 22
      * @return string
23 23
      */
24
-    public static function convert (\Gedcom\Record\Addr &$addr, $format = self::GEDCOM55, $level = 1)
24
+    public static function convert(\Gedcom\Record\Addr &$addr, $format = self::GEDCOM55, $level = 1)
25 25
     {
26 26
         $addrs = explode("\n", $addr->getAddr());
27 27
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
             $output .= ($level + 1).' CONT '.$cont."\n";
34 34
         }
35 35
 
36
-        return $output . (($level + 1).' ADR1 '.$addr->adr1."\n".
36
+        return $output.(($level + 1).' ADR1 '.$addr->adr1."\n".
37 37
             ($level + 1).' ADR2 '.$addr->getAdr2()."\n".
38 38
             ($level + 1).' CITY '.$addr->getCity()."\n".
39 39
             ($level + 1).' STAE '.$addr->getStae()."\n".
Please login to merge, or discard this patch.
src/Writer/Fam.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @return string
24 24
      */
25
-    public static function convert (\Gedcom\Record\Fam &$fam, $level = 0)
25
+    public static function convert(\Gedcom\Record\Fam &$fam, $level = 0)
26 26
     {
27 27
         $output = '';
28 28
         $id = $fam->getId();
Please login to merge, or discard this patch.
src/Writer/Fam/Slgs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param int                        $level
21 21
      * @return string
22 22
      */
23
-    public static function convert (\Gedcom\Record\Fam\Slgs &$slgs, $level)
23
+    public static function convert(\Gedcom\Record\Fam\Slgs &$slgs, $level)
24 24
     {
25 25
         $output = '';
26 26
         $output .= $level." SLGS \n";
Please login to merge, or discard this patch.
src/Writer/Fam/Even.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param int                        $level
21 21
      * @return string
22 22
      */
23
-    public static function convert (\Gedcom\Record\Fam\Even &$even, $level)
23
+    public static function convert(\Gedcom\Record\Fam\Even &$even, $level)
24 24
     {
25 25
         $output = '';
26 26
 
Please login to merge, or discard this patch.
src/Writer/Fam/Even/Husb.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @return string
24 24
      */
25
-    public static function convert (\Gedcom\Record\Fam\Even\Husb &$husb, $level = 0)
25
+    public static function convert(\Gedcom\Record\Fam\Even\Husb &$husb, $level = 0)
26 26
     {
27 27
         $output = '';
28 28
 
Please login to merge, or discard this patch.
src/Writer/Fam/Even/Wife.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @return string
24 24
      */
25
-    public static function convert (\Gedcom\Record\Fam\Even\Wife &$wife, $level = 0)
25
+    public static function convert(\Gedcom\Record\Fam\Even\Wife &$wife, $level = 0)
26 26
     {
27 27
         $output = '';
28 28
 
Please login to merge, or discard this patch.
src/Writer/Subm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @return string
24 24
      */
25
-    public static function convert (\Gedcom\Record\Subm &$subm)
25
+    public static function convert(\Gedcom\Record\Subm &$subm)
26 26
     {
27 27
         $level = 0;
28 28
         $output = '';
Please login to merge, or discard this patch.
src/Writer/Indi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      * @param string                 $format
21 21
      * @return string
22 22
      */
23
-    public static function convert (\Gedcom\Record\Indi &$indi)
23
+    public static function convert(\Gedcom\Record\Indi &$indi)
24 24
     {
25 25
         $level = 0;
26 26
 
Please login to merge, or discard this patch.
src/Writer/Refn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @return string
24 24
      */
25
-    public static function convert (\Gedcom\Record\Refn &$refn, $level)
25
+    public static function convert(\Gedcom\Record\Refn &$refn, $level)
26 26
     {
27 27
         $output = '';
28 28
         $_refn = $refn->getRefn();
Please login to merge, or discard this patch.