diff options
Diffstat (limited to 'app/Controllers/userController.php')
| -rw-r--r-- | app/Controllers/userController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php index 3777a7b4f..6d8d510db 100644 --- a/app/Controllers/userController.php +++ b/app/Controllers/userController.php @@ -629,7 +629,8 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController { $this->view->details = $this->retrieveUserDetails($username); } - private function retrieveUserDetails($username) { + /** @return array<string,int|string|bool> */ + private function retrieveUserDetails($username): array { $feedDAO = FreshRSS_Factory::createFeedDao($username); $entryDAO = FreshRSS_Factory::createEntryDao($username); $databaseDAO = FreshRSS_Factory::createDatabaseDAO($username); |
