Skip to content

Commit

Permalink
fix: service names
Browse files Browse the repository at this point in the history
  • Loading branch information
michtio committed Jan 7, 2025
1 parent 3ef30a7 commit f64d428
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/services/ServicesTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
* @package Password Policy
* @since 5.0.3
*
* @property Passwords $passwords
* @property Retention $retention
* @property PasswordsService $passwords
* @property RetentionService $retention
* @property VitePluginService $vite
*/
trait ServicesTrait
Expand Down Expand Up @@ -48,7 +48,7 @@ public static function config(): array
* @return Passwords The passwords service
* @throws InvalidConfigException
*/
public function getPasswords(): Passwords
public function getPasswords(): PasswordsService
{
return $this->get('passwords');
}
Expand All @@ -59,7 +59,7 @@ public function getPasswords(): Passwords
* @return Retention The retention service
* @throws InvalidConfigException
*/
public function getRetention(): Retention
public function getRetention(): RetentionService
{
return $this->get('retention');
}
Expand Down

0 comments on commit f64d428

Please sign in to comment.