Skip to content

Commit

Permalink
Merge pull request #43 from BRACKETS-by-TRIAD/fix/activation-broker
Browse files Browse the repository at this point in the history
fix: add correct return type to getUserModelClass method
  • Loading branch information
erikgreasy authored Oct 25, 2023
2 parents 4eee13a + bedd94b commit 9a6d836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Activation/Brokers/ActivationBroker.php
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,9 @@ public function getRepository(): TokenRepositoryInterface
/**
* Get the user model class implementation.
*
* @return CanActivateContract
* @return string
*/
public function getUserModelClass(): CanActivateContract
public function getUserModelClass(): string
{
return $this->users->getModel();
}
Expand Down

0 comments on commit 9a6d836

Please sign in to comment.