Skip to content

Commit 2dee8f4

Browse files
authored
Merge pull request laravel#4850 from driesvints/remove-comments
[5.7] Remove comments
2 parents ea2c04f + 9f88a85 commit 2dee8f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

socialite.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ To get started with Socialite, use Composer to add the package to your project's
3535
Before using Socialite, you will also need to add credentials for the OAuth services your application utilizes. These credentials should be placed in your `config/services.php` configuration file, and should use the key `facebook`, `twitter`, `linkedin`, `google`, `github`, `gitlab` or `bitbucket`, depending on the providers your application requires. For example:
3636

3737
'github' => [
38-
'client_id' => env('GITHUB_CLIENT_ID'), // Your GitHub Client ID
39-
'client_secret' => env('GITHUB_CLIENT_SECRET'), // Your GitHub Client Secret
38+
'client_id' => env('GITHUB_CLIENT_ID'),
39+
'client_secret' => env('GITHUB_CLIENT_SECRET'),
4040
'redirect' => 'http://your-callback-url',
4141
],
4242

0 commit comments

Comments
 (0)