summaryrefslogtreecommitdiff
path: root/app/Services/UserService.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Services/UserService.php')
-rw-r--r--app/Services/UserService.php16
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
{