File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
return [
4
4
5
- /*
5
+ /**
6
6
* These are the keys for authentication (VAPID).
7
7
* These keys must be safely stored and should not change.
8
8
*/
13
13
'pem_file ' => env ('VAPID_PEM_FILE ' ),
14
14
],
15
15
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
+ /**
26
17
* This is model that will be used to for push subscriptions.
27
18
*/
28
19
'model ' => \NotificationChannels \WebPush \PushSubscription::class,
29
20
30
- /*
21
+ /**
31
22
* This is the name of the table that will be created by the migration and
32
23
* used by the PushSubscription model shipped with this package.
33
24
*/
34
25
'table_name ' => env ('WEBPUSH_DB_TABLE ' , 'push_subscriptions ' ),
35
26
36
- /*
27
+ /**
37
28
* This is the database connection that will be used by the migration and
38
29
* the PushSubscription model shipped with this package.
39
30
*/
40
31
'database_connection ' => env ('WEBPUSH_DB_CONNECTION ' , env ('DB_CONNECTION ' , 'mysql ' )),
41
32
33
+ /**
34
+ * Google Cloud Messaging.
35
+ * @deprecated
36
+ */
37
+ 'gcm ' => [
38
+ 'key ' => env ('GCM_KEY ' ),
39
+ 'sender_id ' => env ('GCM_SENDER_ID ' ),
40
+ ],
41
+
42
42
];
You can’t perform that action at this time.
0 commit comments