Completed
Push — develop ( a42dca...7c41b0 )
by Greg
09:28
created
app/Module/CensusAssistantModule.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,6 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param Individual      $individual
87
-     * @param CensusInterface $census
88 87
      */
89 88
     public function createCensusAssistant(Individual $individual) {
90 89
         ?>
@@ -287,7 +286,7 @@  discard block
 block discarded – undo
287 286
      * @param string          $ca_title
288 287
      * @param string          $ca_place
289 288
      * @param string          $ca_citation
290
-     * @param string[][]      $ca_individuals
289
+     * @param string[]      $ca_individuals
291 290
      * @param string          $ca_notes
292 291
      *
293 292
      * @return string
Please login to merge, or discard this patch.
app/Census/CensusColumnSexMF.php 1 patch
Switch Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@
 block discarded – undo
38 38
 	 */
39 39
 	public function generate(Individual $individual, Individual $head = null) {
40 40
 		switch ($individual->getSex()) {
41
-			case 'M':
42
-				return $this->male;
43
-			case 'F':
44
-				return $this->female;
45
-			default:
46
-				return '';
41
+		case 'M':
42
+			return $this->male;
43
+		case 'F':
44
+			return $this->female;
45
+		default:
46
+			return '';
47 47
 		}
48 48
 	}
49 49
 }
Please login to merge, or discard this patch.