Skip to content

Commit

Permalink
Merge branch '5.4' into 6.0
Browse files Browse the repository at this point in the history
* 5.4:
  Fix CS
  Fix CS
  • Loading branch information
fabpot committed Jul 20, 2022
2 parents 057c738 + 25d14fa commit 6435c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion User/InMemoryUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public function supportsClass(string $class): bool
*
* @throws UserNotFoundException if user whose given username does not exist
*/
private function getUser(string $username)/*: InMemoryUser */
private function getUser(string $username)/* : InMemoryUser */
{
if (!isset($this->users[strtolower($username)])) {
$ex = new UserNotFoundException(sprintf('Username "%s" does not exist.', $username));
Expand Down

0 comments on commit 6435c93

Please sign in to comment.