Skip to content

Commit

Permalink
refactor: deleted unnecessary spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
julianramirez2 committed Oct 10, 2023
1 parent ee0a720 commit 5f6aca6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function enrollment_send_request( $enrollment_data, $enrollment_action )
$access_token = $access_token[1];
}

$user = $this->get_user( $enrollment_data['enrollment_email'], $access_token );
$user = $this->get_user( $enrollment_data['enrollment_email'], $access_token );

if ( 'error' === $access_token[0] || 'error' === $user[0] ) {
if ( 'error' === $access_token[0] && 'error' === $user[0] ) {
Expand Down

0 comments on commit 5f6aca6

Please sign in to comment.