Test Failed
Branch master (4a3c5b)
by Greg
12:31
created
app/Module/FamilyNavigatorModule.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,8 +150,8 @@
 block discarded – undo
150 150
 				}
151 151
 
152 152
 				foreach ($family->getChildren() as $child) {
153
-          $icon = $controller->record === $child ? '<i class="icon-selected"></i>' : '';
154
-          $menu = new Menu($icon . Functions::getCloseRelationshipName($controller->record, $child));
153
+					$icon = $controller->record === $child ? '<i class="icon-selected"></i>' : '';
154
+					$menu = new Menu($icon . Functions::getCloseRelationshipName($controller->record, $child));
155 155
 					$menu->addSubmenu(new Menu($this->getFamily($child)));
156 156
 					?>
157 157
 					<tr class="text-center wt-child wt-gender-<?= $child->getSex() ?>">
Please login to merge, or discard this patch.
app/Module/RelativesTabModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
 					$row_class .= ' old';
178 178
 				}
179 179
 				$icon = $controller->record === $person ? '<i class="icon-selected"></i>' : '';
180
-        ?>
180
+				?>
181 181
 				<tr class="<?= $row_class ?>">
182 182
 					<th scope="row">
183 183
 					<?= $icon ?>
Please login to merge, or discard this patch.
app/Datatables.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
 		return [
66 66
 			'data-language'     => json_encode($language),
67
-		  'data-length-menu' => json_encode([array_keys($length_menu), array_values($length_menu)])
67
+			'data-length-menu' => json_encode([array_keys($length_menu), array_values($length_menu)])
68 68
 		];
69 69
 	}
70 70
 
Please login to merge, or discard this patch.
app/Theme/AbstractTheme.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -101,9 +101,9 @@
 block discarded – undo
101 101
 		'info'    => 'fa fa-info-circle',
102 102
 		'warning' => 'fa fa-exclamation-circle',
103 103
 
104
-	  // Icons for file types
105
-	  'mime-application-pdf' => '',
106
-	  'mime-text-html'       => '',
104
+		// Icons for file types
105
+		'mime-application-pdf' => '',
106
+		'mime-text-html'       => '',
107 107
 
108 108
 		// Other icons
109 109
 		'mail'   => 'fa fa-envelope-o',
Please login to merge, or discard this patch.
app/MediaFile.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,17 +31,17 @@
 block discarded – undo
31 31
 	private $multimedia_format = '';
32 32
 
33 33
 	/** @var string The type of document; newspaper, microfiche, etc. */
34
-  private $source_media_type = '';
34
+	private $source_media_type = '';
35 35
 	/** @var string The filename */
36 36
 
37 37
 	/** @var string The name of the document */
38
-  private $descriptive_title = '';
38
+	private $descriptive_title = '';
39 39
 
40
-  /** @var Media $media The media object to which this file belongs */
41
-  private $media;
40
+	/** @var Media $media The media object to which this file belongs */
41
+	private $media;
42 42
 
43
-  /** @var string */
44
-  private $fact_id;
43
+	/** @var string */
44
+	private $fact_id;
45 45
 
46 46
 	/**
47 47
 	 * Create a MediaFile from raw GEDCOM data.
Please login to merge, or discard this patch.