Skip to content

Commit 7ab619d

Browse files
committed
Update webpush.php
1 parent f92ad49 commit 7ab619d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

config/webpush.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
return [
44

5-
/*
5+
/**
66
* These are the keys for authentication (VAPID).
77
* These keys must be safely stored and should not change.
88
*/
@@ -13,30 +13,30 @@
1313
'pem_file' => env('VAPID_PEM_FILE'),
1414
],
1515

16-
/*
17-
* Google Cloud Messaging.
18-
* Deprecated and optional. It's here only for compatibility reasons.
19-
*/
20-
'gcm' => [
21-
'key' => env('GCM_KEY'),
22-
'sender_id' => env('GCM_SENDER_ID'),
23-
],
24-
25-
/*
16+
/**
2617
* This is model that will be used to for push subscriptions.
2718
*/
2819
'model' => \NotificationChannels\WebPush\PushSubscription::class,
2920

30-
/*
21+
/**
3122
* This is the name of the table that will be created by the migration and
3223
* used by the PushSubscription model shipped with this package.
3324
*/
3425
'table_name' => env('WEBPUSH_DB_TABLE', 'push_subscriptions'),
3526

36-
/*
27+
/**
3728
* This is the database connection that will be used by the migration and
3829
* the PushSubscription model shipped with this package.
3930
*/
4031
'database_connection' => env('WEBPUSH_DB_CONNECTION', env('DB_CONNECTION', 'mysql')),
4132

33+
/**
34+
* Google Cloud Messaging.
35+
* @deprecated
36+
*/
37+
'gcm' => [
38+
'key' => env('GCM_KEY'),
39+
'sender_id' => env('GCM_SENDER_ID'),
40+
],
41+
4242
];

0 commit comments

Comments
 (0)