diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-12-10 18:12:33 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-12-10 18:12:33 +0000 |
| commit | b5c8fd7e66957665381ee23f19cf39bda22bc768 (patch) | |
| tree | 96d886b864026df614d32b0ab8cc9ffc24016c9d /app/Services/UserService.php | |
| parent | 685de0813f1bb9f3e6c25fe9c4ef849706fa4feb (diff) | |
| download | webtrees-b5c8fd7e66957665381ee23f19cf39bda22bc768.tar.gz webtrees-b5c8fd7e66957665381ee23f19cf39bda22bc768.tar.bz2 webtrees-b5c8fd7e66957665381ee23f19cf39bda22bc768.zip | |
PHPdoc
Diffstat (limited to 'app/Services/UserService.php')
| -rw-r--r-- | app/Services/UserService.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/Services/UserService.php b/app/Services/UserService.php index c8b2b3a3d6..2b62c6dee5 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -99,7 +99,7 @@ class UserService * * @param Individual $individual * - * @return Collection + * @return Collection<User> */ public function findByIndividual(Individual $individual): Collection { @@ -188,7 +188,7 @@ class UserService /** * Get a list of all users. * - * @return Collection + * @return Collection<User> */ public function all(): Collection { @@ -202,7 +202,7 @@ class UserService /** * Get a list of all administrators. * - * @return Collection + * @return Collection<User> */ public function administrators(): Collection { @@ -220,7 +220,7 @@ class UserService /** * Get a list of all managers. * - * @return Collection + * @return Collection<User> */ public function managers(): Collection { @@ -239,7 +239,7 @@ class UserService /** * Get a list of all moderators. * - * @return Collection + * @return Collection<User> */ public function moderators(): Collection { @@ -258,7 +258,7 @@ class UserService /** * Get a list of all verified users. * - * @return Collection + * @return Collection<User> */ public function unapproved(): Collection { @@ -283,7 +283,7 @@ class UserService /** * Get a list of all verified users. * - * @return Collection + * @return Collection<User> */ public function unverified(): Collection { @@ -308,7 +308,7 @@ class UserService /** * Get a list of all users who are currently logged in. * - * @return Collection + * @return Collection<User> */ public function allLoggedIn(): Collection { |
