Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcHagen committed Feb 12, 2024
1 parent cabdb52 commit 3977bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Integrations/Github/GitHubIntegration.php
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ protected function getApiHeaders(array $token, array $default = []): array
*/
public function createUser(array $userData): User
{
$email = $data['email'] ?? (str_contains($userData['user_identifier'], '@') ? $userData['user_identifier'] : $userData['user_identifier'] .'@example.com');
$email = $userData['email'] ?? (str_contains($userData['user_identifier'], '@') ? $userData['user_identifier'] : $userData['user_identifier'] .'@example.com');

$user = new User();
$user->setEnabled(true)
Expand Down

0 comments on commit 3977bed

Please sign in to comment.