From 5f6947c932701e04d29237439c544a4a71002c0e Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Tue, 7 Jan 2025 21:12:17 +0100 Subject: [PATCH] fix: phpstan --- src/services/ServicesTrait.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/ServicesTrait.php b/src/services/ServicesTrait.php index a0c1631..e153a9c 100644 --- a/src/services/ServicesTrait.php +++ b/src/services/ServicesTrait.php @@ -45,7 +45,7 @@ public static function config(): array /** * Returns the passwords service * - * @return Passwords The passwords service + * @return PasswordsService The passwords service * @throws InvalidConfigException */ public function getPasswords(): PasswordsService @@ -56,7 +56,7 @@ public function getPasswords(): PasswordsService /** * Returns the retention service * - * @return Retention The retention service + * @return RetentionService The retention service * @throws InvalidConfigException */ public function getRetention(): RetentionService