summaryrefslogtreecommitdiff
path: root/app/Report
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-10-14 18:46:02 +0100
committerGreg Roach <greg@subaqua.co.uk>2021-10-14 18:46:02 +0100
commit1c7df322b0b40558e9259264fb93f1811bc232ae (patch)
treebb5059f9ff8e49fcdc889353dea9c6c9ebd072d7 /app/Report
parent4c78e066e3ba48f4c71bb900fac88b9e85e97474 (diff)
downloadwebtrees-1c7df322b0b40558e9259264fb93f1811bc232ae.tar.gz
webtrees-1c7df322b0b40558e9259264fb93f1811bc232ae.tar.bz2
webtrees-1c7df322b0b40558e9259264fb93f1811bc232ae.zip
TypeHints
Diffstat (limited to 'app/Report')
-rw-r--r--app/Report/ReportParserGenerate.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/Report/ReportParserGenerate.php b/app/Report/ReportParserGenerate.php
index 190dac1d82..6a8f4b060e 100644
--- a/app/Report/ReportParserGenerate.php
+++ b/app/Report/ReportParserGenerate.php
@@ -2572,10 +2572,10 @@ class ReportParserGenerate extends ReportParserBase
/**
* Create a list of all descendants.
*
- * @param array<string> $list
- * @param string $pid
- * @param bool $parents
- * @param int $generations
+ * @param array<Individual> $list
+ * @param string $pid
+ * @param bool $parents
+ * @param int $generations
*
* @return void
*/
@@ -2637,10 +2637,10 @@ class ReportParserGenerate extends ReportParserBase
/**
* Create a list of all ancestors.
*
- * @param array<stdClass> $list
- * @param string $pid
- * @param bool $children
- * @param int $generations
+ * @param array<Individual> $list
+ * @param string $pid
+ * @param bool $children
+ * @param int $generations
*
* @return void
*/