Skip to content

Commit

Permalink
Fix return types.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Aug 1, 2022
1 parent fdcde3f commit 661c6cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Security/Core/User/EuLoginUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct(CasUserProviderInterface $casUserProvider)
$this->casUserProvider = $casUserProvider;
}

public function loadUserByIdentifier($identifier)
public function loadUserByIdentifier(string $identifier): UserInterface
{
throw new UnsupportedUserException('Unsupported operation.');
}
Expand Down

0 comments on commit 661c6cd

Please sign in to comment.