Skip to content

Commit

Permalink
Reorder arguments to oauth authenticator
Browse files Browse the repository at this point in the history
  • Loading branch information
chetan-thapliyal committed Sep 11, 2024
1 parent dc4e13a commit 04bece4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Mealz/UserBundle/Provider/OAuthUserProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ class OAuthUserProvider implements UserProviderInterface, OAuthAwareUserProvider
];

public function __construct(
private string $authClientID,
private EntityManagerInterface $entityManager,
private RoleRepositoryInterface $roleRepo
private readonly EntityManagerInterface $entityManager,
private readonly RoleRepositoryInterface $roleRepo,
private readonly string $authClientID
) {
}

Expand Down

0 comments on commit 04bece4

Please sign in to comment.