Skip to content

Commit

Permalink
1092 - Fix CS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ajibarra committed Aug 2, 2024
1 parent be5fb4f commit a7370ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Behavior/SocialBehavior.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ protected function _createSocialUser($data, $options = [])
if ($useEmail && empty($email)) {
throw new MissingEmailException(__d('cake_d_c/users', 'Email not present'));
} else {
$existingUser = $this->_table->find('existingForSocialLogin', email: $email )->first();
$existingUser = $this->_table->find('existingForSocialLogin', email: $email)->first();
}

$user = $this->_populateUser($data, $existingUser, $useEmail, $validateEmail, $tokenExpiration);
Expand Down

0 comments on commit a7370ef

Please sign in to comment.