Skip to content

Commit

Permalink
Add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
darkin1 authored Aug 17, 2020
1 parent 9f33684 commit 81768c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IntercomServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function register()
$accessToken = $app['config']->get('intercom.access_token');

$intercom = new IntercomClient($accessToken, null, [
'Intercom-Version' => $app['config']->get('intercom.api_version')
'Intercom-Version' => $app['config']->get('intercom.api_version'),
]);

return new IntercomApi($intercom);
Expand Down

0 comments on commit 81768c6

Please sign in to comment.