We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b911560 commit 04621a0Copy full SHA for 04621a0
src/GitHubAuthCore/GitHubAuthService.php
@@ -219,7 +219,7 @@ protected function loginIn()
219
if ($user = \App\User::where('email', $this->user_github_object->email)->first()) {
220
$user->email = $this->user_github_object->email;
221
} else {
222
- $user = new User();
+ $user = new \App\User();
223
224
}
225
Auth::login($user);
0 commit comments