Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bug #812 [make:auth] fix user email field with capital
E
(jrushlow)
This PR was merged into the 1.0-dev branch. Discussion ---------- [make:auth] fix user email field with capital `E` We were using the wrong `Str` camel case method to generate the username field variable for the authenticator template. ```diff // class ACustomAuthenticator extends AbstractLoginFormAuthenticator ... public function authenticate(Request $request): PassportInterface { - $Email = $request->request->get('email', ''); + $email = $request->request->get('email', ''); ... } ``` Commits ------- 8695026 lets use the correct camel case
- Loading branch information