@@ -219,7 +219,7 @@ |
||
219 | 219 | |
220 | 220 | /** |
221 | 221 | * Convert an array to Google Chart encoding |
222 | - * @param arrat $a Array to encode |
|
222 | + * @param integer[] $a Array to encode |
|
223 | 223 | * @return string |
224 | 224 | */ |
225 | 225 | private function arrayToExtendedEncoding($a) { |
@@ -146,7 +146,7 @@ |
||
146 | 146 | /** |
147 | 147 | * Static invocation of the *save* method. |
148 | 148 | * |
149 | - * @param string|\Psr\Cache\CacheItemInterface $value Value name |
|
149 | + * @param CacheItemInterface $value Value name |
|
150 | 150 | * @param mixed $data Value |
151 | 151 | * @param AbstractModule $mod Calling module |
152 | 152 | */ |
@@ -45,6 +45,7 @@ discard block |
||
45 | 45 | * @param string $element_name Element name from the edit interface, used to POST values for update |
46 | 46 | * @param string $context Tag context |
47 | 47 | * @param string $contextid Id of tag context |
48 | + * @return string |
|
48 | 49 | */ |
49 | 50 | public function hHtmlSimpleTagEditor($tag, $value = null, $element_id = '', $element_name = '', $context = null, $contextid = null); |
50 | 51 | |
@@ -53,6 +54,7 @@ discard block |
||
53 | 54 | * |
54 | 55 | * @param string $context Context of the edition |
55 | 56 | * @param int $level Level to which add the tags |
57 | + * @return void |
|
56 | 58 | */ |
57 | 59 | public function hAddSimpleTag($context, $level); |
58 | 60 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | /** |
41 | 41 | * Constructor for Lineage node |
42 | 42 | * |
43 | - * @param Fisharebest\Webtrees\Individual $node_indi Main individual |
|
43 | + * @param Individual $node_indi Main individual |
|
44 | 44 | * @param LineageRootNode $root_node Node of the lineage root |
45 | 45 | * @param null|string $alt_surname Follow-up surname |
46 | 46 | */ |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | /** |
55 | 55 | * Add a spouse family to the node |
56 | 56 | * |
57 | - * @param Fisharebest\Webtrees\Family $fams |
|
57 | + * @param Family $fams |
|
58 | 58 | */ |
59 | 59 | public function addFamily(Family $fams) { |
60 | 60 | if($fams && !isset($this->linked_fams[$fams])) { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Add a child LineageNode to the node |
67 | 67 | * |
68 | - * @param Fisharebest\Webtrees\Family $fams |
|
68 | + * @param Family $fams |
|
69 | 69 | * @param LineageNode $child |
70 | 70 | */ |
71 | 71 | public function addChild(Family $fams, LineageNode $child = null) { |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | /** |
81 | 81 | * Returns the node individual |
82 | 82 | * |
83 | - * @return Fisharebest\Webtrees\Individual |
|
83 | + * @return \Fisharebest\Webtrees\GedcomRecord |
|
84 | 84 | */ |
85 | 85 | public function getIndividual() { |
86 | 86 | return $this->node_indi; |
@@ -25,7 +25,7 @@ |
||
25 | 25 | /** |
26 | 26 | * Contructor for the decorator |
27 | 27 | * |
28 | - * @param \Fisharebest\Webtrees\Place $place_in The Place to extend |
|
28 | + * @param \Fisharebest\Webtrees\Place $place The Place to extend |
|
29 | 29 | */ |
30 | 30 | public function __construct(\Fisharebest\Webtrees\Place $place){ |
31 | 31 | $this->place = $place; |
@@ -22,6 +22,7 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @param GedcomRecord $grec Gedcom record |
24 | 24 | * @param string $size Prepend size |
25 | + * @return void |
|
25 | 26 | */ |
26 | 27 | public function hRecordNamePrepend(GedcomRecord $grec, $size); |
27 | 28 | |
@@ -30,6 +31,7 @@ discard block |
||
30 | 31 | * |
31 | 32 | * @param GedcomRecord $grec Gedcom record |
32 | 33 | * @param string $size Append size |
34 | + * @return string |
|
33 | 35 | */ |
34 | 36 | public function hRecordNameAppend(GedcomRecord $grec, $size); |
35 | 37 |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | /** |
278 | 278 | * Get an associative array of Sosa individuals in generation G. Keys are Sosa numbers, values individuals. |
279 | 279 | * |
280 | - * @param number $gen Generation |
|
280 | + * @param integer $gen Generation |
|
281 | 281 | * @return array Array of Sosa individuals |
282 | 282 | */ |
283 | 283 | public function getSosaListAtGeneration($gen){ |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | /** |
309 | 309 | * Get an associative array of Sosa families in generation G. Keys are Sosa numbers for the husband, values families. |
310 | 310 | * |
311 | - * @param number $gen Generation |
|
311 | + * @param integer $gen Generation |
|
312 | 312 | * @return array Array of Sosa families |
313 | 313 | */ |
314 | 314 | public function getFamilySosaListAtGeneration($gen){ |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | /** |
345 | 345 | * Get an associative array of Sosa individuals in generation G who are missing parents. Keys are Sosa numbers, values individuals. |
346 | 346 | * |
347 | - * @param number $gen Generation |
|
347 | + * @param integer $gen Generation |
|
348 | 348 | * @return array Array of Sosa individuals |
349 | 349 | */ |
350 | 350 | public function getMissingSosaListAtGeneration($gen){ |
@@ -439,8 +439,8 @@ discard block |
||
439 | 439 | /** |
440 | 440 | * Get the number of Sosa in a specific generation. |
441 | 441 | * |
442 | - * @param number $gen Generation |
|
443 | - * @return number Number of Sosas in generation |
|
442 | + * @param integer $gen Generation |
|
443 | + * @return integer Number of Sosas in generation |
|
444 | 444 | */ |
445 | 445 | public function getSosaCountAtGeneration($gen){ |
446 | 446 | if(!$this->is_setup) return 0; |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | /** |
459 | 459 | * Get the total number of Sosa up to a specific generation. |
460 | 460 | * |
461 | - * @param number $gen Generation |
|
461 | + * @param integer $gen Generation |
|
462 | 462 | * @return number Total number of Sosas up to generation |
463 | 463 | */ |
464 | 464 | public function getSosaCountUpToGeneration($gen){ |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | /** |
494 | 494 | * Get the number of distinct Sosa individual up to a specific generation. |
495 | 495 | * |
496 | - * @param number $gen Generation |
|
496 | + * @param integer $gen Generation |
|
497 | 497 | * @return number Number of distinct Sosa individuals up to generation |
498 | 498 | */ |
499 | 499 | public function getDifferentSosaCountUpToGeneration($gen){ |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | * - last : Last birth year in generation |
517 | 517 | * - avg : Average birth year |
518 | 518 | * |
519 | - * @param number $gen Generation |
|
519 | + * @param integer $gen Generation |
|
520 | 520 | * @return array Birth statistics array |
521 | 521 | */ |
522 | 522 | public function getStatsBirthYearInGeneration($gen){ |
@@ -622,7 +622,7 @@ discard block |
||
622 | 622 | * - key : root Sosa individual |
623 | 623 | * - value: number of duplications of the ancestor (e.g. 3 if it appears 3 times) |
624 | 624 | * |
625 | - * @param number $limit Maximum number of individuals to return |
|
625 | + * @param integer $limit Maximum number of individuals to return |
|
626 | 626 | * @return array |
627 | 627 | */ |
628 | 628 | public function getTopMultiSosaAncestorsNoTies($limit) { |