Skip to content

Commit

Permalink
Merge pull request #59 from stof/patch-2
Browse files Browse the repository at this point in the history
Document the return type of IdentityProviderInterface
  • Loading branch information
steverhoades authored Sep 24, 2024
2 parents cac597f + f9cf360 commit 0d67b5a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Repositories/IdentityProviderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,14 @@
*/
namespace OpenIDConnectServer\Repositories;

use League\OAuth2\Server\Entities\UserEntityInterface;
use League\OAuth2\Server\Repositories\RepositoryInterface;
use OpenIDConnectServer\Entities\ClaimSetInterface;

interface IdentityProviderInterface extends RepositoryInterface
{
/**
* @return UserEntityInterface&ClaimSetInterface
*/
public function getUserEntityByIdentifier($identifier);
}

0 comments on commit 0d67b5a

Please sign in to comment.