Skip to content

Commit

Permalink
Fix syntax typo in AuthenticationController::__construct() (#180)
Browse files Browse the repository at this point in the history
### Changes

Fix syntax typo in the previous code change in
`AuthenticationController::__construct()`

### References

#178
#179
https://github.com/auth0/symfony/actions/runs/7279226624/job/19835136156
https://github.com/auth0/symfony/actions/runs/7279226624/job/19835137264

### Testing

[ ] This change adds test coverage

[ ] This change has been tested on the latest version of Symfony

### Checklist

[x] I have read the [Auth0 general contribution
guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)

[x] I have read the [Auth0 Code of
Conduct](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)

[ ] All existing and new tests complete without errors
  • Loading branch information
mkilmanas authored Jan 4, 2024
1 parent 0f60608 commit 2821db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controllers/AuthenticationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function __construct(
private RouterInterface $router,
ContainerInterface $container,
) {
$this-setContainer($container);
$this->setContainer($container);
}

/**
Expand Down

0 comments on commit 2821db4

Please sign in to comment.