Passed
Push — 1.7 ( f0b695...88dc42 )
by Greg
31:03 queued 23:47
created
app/Module/FamilyNavigatorModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -217,7 +217,7 @@
 block discarded – undo
217 217
             $father = $family->getHusband();
218 218
             $mother = $family->getWife();
219 219
             $html .= $this->getHTML($father) .
220
-                     $this->getHTML($mother);
220
+                        $this->getHTML($mother);
221 221
 
222 222
             // Can only have a step parent if one & only one parent found at this point
223 223
             if ($father instanceof Individual xor $mother instanceof Individual) {
Please login to merge, or discard this patch.
app/Module/DescendancyModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
             '<a class="sb_desc_indi" href="#"><i class="plusminus icon-minus"></i>' . $spouse_name . $marr . '</a>' .
200 200
             $spouse_link .
201 201
             '<a href="' . $family->getHtmlUrl() . '" class="icon-button_family"></a>' .
202
-         '<div>' . $this->loadChildren($family, $generations) . '</div>' .
202
+            '<div>' . $this->loadChildren($family, $generations) . '</div>' .
203 203
             '</li>';
204 204
     }
205 205
 
Please login to merge, or discard this patch.
app/Functions/FunctionsDb.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -759,7 +759,7 @@
 block discarded – undo
759 759
             new JewishDate($jd),
760 760
             new HijriDate($jd),
761 761
             new JalaliDate($jd),
762
-         ) as $anniv) {
762
+            ) as $anniv) {
763 763
             // Build a SQL where clause to match anniversaries in the appropriate calendar.
764 764
             $ind_sql =
765 765
                 "SELECT DISTINCT i_id AS xref, i_gedcom AS gedcom, d_type, d_day, d_month, d_year, d_fact" .
Please login to merge, or discard this patch.