Completed
Push — develop ( a42dca...7c41b0 )
by Greg
09:28
created
app/Date/CalendarDate.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -842,7 +842,7 @@
 block discarded – undo
842 842
 	/**
843 843
 	 * Which months follows this one? Calendars with leap-months should provide their own implementation.
844 844
 	 *
845
-	 * @return int[]
845
+	 * @return integer[]
846 846
 	 */
847 847
 	protected function nextMonth() {
848 848
 		return [$this->m === $this->calendar->monthsInYear() ? $this->nextYear($this->y) : $this->y, ($this->m % $this->calendar->monthsInYear()) + 1];
Please login to merge, or discard this patch.
app/Controller/IndividualController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,6 @@  discard block
 block discarded – undo
118 118
 	/**
119 119
 	 * Format a name record
120 120
 	 *
121
-	 * @param int  $primary
122 121
 	 * @param Fact $fact
123 122
 	 *
124 123
 	 * @return string
@@ -216,7 +215,6 @@  discard block
 block discarded – undo
216 215
 	/**
217 216
 	 * print information for a sex record
218 217
 	 *
219
-	 * @param Fact $event the Event object
220 218
 	 *
221 219
 	 * @return string
222 220
 	 */
Please login to merge, or discard this patch.
app/Filter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -334,7 +334,7 @@
 block discarded – undo
334 334
 	 * @param string|null $regexp
335 335
 	 * @param string      $default
336 336
 	 *
337
-	 * @return string[]|string[][]
337
+	 * @return string[]
338 338
 	 */
339 339
 	public static function postArray($variable, $regexp = null, $default = '') {
340 340
 		return self::inputArray(INPUT_POST, $variable, $regexp, $default);
Please login to merge, or discard this patch.
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.