summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/ControlPanel.php
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-02-18 13:56:15 +0000
committerGreg Roach <greg@subaqua.co.uk>2022-02-18 14:23:58 +0000
commit36779af1bd0601de7819554b13a393f6edb92507 (patch)
tree5b3d1507c1c7ef8cb5d790a6a25033c4651caca1 /app/Http/RequestHandlers/ControlPanel.php
parent7b0d562e1536c7d515bfdb12e13250a94005b418 (diff)
downloadwebtrees-36779af1bd0601de7819554b13a393f6edb92507.tar.gz
webtrees-36779af1bd0601de7819554b13a393f6edb92507.tar.bz2
webtrees-36779af1bd0601de7819554b13a393f6edb92507.zip
PHPdoc
Diffstat (limited to 'app/Http/RequestHandlers/ControlPanel.php')
-rw-r--r--app/Http/RequestHandlers/ControlPanel.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/Http/RequestHandlers/ControlPanel.php b/app/Http/RequestHandlers/ControlPanel.php
index 4373ecc4ad..8c0db3ee7c 100644
--- a/app/Http/RequestHandlers/ControlPanel.php
+++ b/app/Http/RequestHandlers/ControlPanel.php
@@ -237,7 +237,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of individuals in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalIndividuals(): Collection
{
@@ -253,7 +253,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of families in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalFamilies(): Collection
{
@@ -269,7 +269,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of sources in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalSources(): Collection
{
@@ -285,7 +285,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of media objects in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalMediaObjects(): Collection
{
@@ -299,9 +299,9 @@ class ControlPanel implements RequestHandlerInterface
}
/**
- * Count the number of repositorie in each tree.
+ * Count the number of repositories in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalRepositories(): Collection
{
@@ -321,7 +321,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of notes in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalNotes(): Collection
{
@@ -341,7 +341,7 @@ class ControlPanel implements RequestHandlerInterface
/**
* Count the number of submitters in each tree.
*
- * @return Collection<string,int>
+ * @return Collection<int,int>
*/
private function totalSubmitters(): Collection
{