Skip to content

Commit

Permalink
Do not redeclare controller container property in order to avoid comp…
Browse files Browse the repository at this point in the history
…atibility issues
  • Loading branch information
mkilmanas committed Dec 20, 2023
1 parent 7c4dff1 commit 8b23e31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Controllers/AuthenticationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ final class AuthenticationController extends AbstractController implements Authe
public function __construct(
private Authenticator $authenticator,
private RouterInterface $router,
protected ContainerInterface $container,
ContainerInterface $container,
) {
$this-setContainer($container);
}

/**
Expand Down

0 comments on commit 8b23e31

Please sign in to comment.